curl --request DELETE \
--url https://api.videodb.io/video/{video_id} \
--header 'x-access-token: <api-key>'{
"success": true,
"message": "Operation successful"
}Delete a video and its metadata from VideoDB
curl --request DELETE \
--url https://api.videodb.io/video/{video_id} \
--header 'x-access-token: <api-key>'{
"success": true,
"message": "Operation successful"
}Permanently delete a video from VideoDB. This removes all associated metadata, indexes, and transcripts.Documentation Index
Fetch the complete documentation index at: https://docs.videodb.io/llms.txt
Use this file to discover all available pages before exploring further.
import videodb
conn = videodb.connect(api_key="your_api_key")
coll = conn.get_collection()
# Get video
video = coll.get_videos()[0]
# Delete the video
video.delete()
print("Video deleted successfully")