Skip to main content
DELETE
/
video
/
{video_id}
/
scenes
/
{scene_collection_id}
Delete scene collection
curl --request DELETE \
  --url https://api.videodb.io/video/{video_id}/scenes/{scene_collection_id}/ \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "status": "processing",
  "data": {
    "id": "job-123",
    "output_url": "https://api.videodb.io/async-response/job-123"
  }
}
Delete a specific scene collection from a video. This removes all scene data within the collection.
  • This operation is irreversible
  • Scene collection IDs start with sc-
  • Re-extract scenes to recreate the collection

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

video_id
string
required
Example:

"m-12345"

scene_collection_id
string
required
Example:

"sc-12345"

Response

200 - application/json

Scene collection deleted

success
boolean
Example:

true

status
enum<string>
Available options:
processing,
done,
failed
Example:

"processing"

data
object