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
curl --request DELETE \
--url https://api.videodb.io/collection/{collection_id} \
--header 'x-access-token: <api-key>'{
"success": true,
"message": "Operation successful"
}Permanently delete a collection and all its media files.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("c-a1b2c3d4")
coll.delete()