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/collection/{collection_id} \ --header 'x-access-token: <api-key>'
{ "success": true, "message": "Operation successful" }
Permanently remove a collection and all its videos
import videodb conn = videodb.connect(api_key="your_api_key") coll = conn.get_collection("c-a1b2c3d4") coll.delete()
API key for authentication (sk-xxx format)
"default"
Collection deleted
true
"Operation successful"