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/audio/{audio_id} \ --header 'x-access-token: <api-key>'
{ "success": true, "message": "Operation successful" }
Permanently delete an audio file from your collection
import videodb conn = videodb.connect(api_key="your_api_key") coll = conn.get_collection() audio = coll.get_audio("a-abc123def") # Delete audio file audio.delete() print("Audio file deleted")
API key for authentication (sk-xxx format)
^a-
"a-12345"
Audio deleted
true
"Operation successful"