Skip to main content
GET
/
video
/
{video_id}
/
scenes
/
{scene_collection_id}
Get scene collection details
curl --request GET \
  --url https://api.videodb.io/video/{video_id}/scenes/{scene_collection_id}/ \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "id": "sc-12345",
    "scenes": [
      {
        "scene_id": "<string>",
        "start": 123,
        "end": 123,
        "description": "<string>"
      }
    ]
  }
}
Retrieve the details and scenes within a specific scene collection, including scene timestamps and descriptions.
  • Use offset and limit parameters for pagination
  • Scene collection IDs start with sc-
  • Each scene includes start/end timestamps and optional descriptions

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"

Query Parameters

offset
integer
Example:

0

limit
integer
Example:

100

Response

200 - application/json

Scene collection details

success
boolean
Example:

true

data
object