Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
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
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")
API key for authentication (sk-xxx format)
^m-
"m-12345"
Video deleted
true
"Operation successful"