Skip to main content
GET
/
rtstream
/
{stream_id}
/
index
/
scene
List RTStream scene indexes
curl --request GET \
  --url https://api.videodb.io/rtstream/{stream_id}/index/scene \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "scene_indexes": [
      {
        "rtstream_index_id": "scene-idx-12345",
        "extraction_type": "time",
        "status": "running",
        "prompt": "<string>",
        "name": "<string>"
      }
    ]
  }
}
List all scene indexes configured on a specific real-time stream.
  • Returns all scene indexes with their status, prompt, and extraction type
  • A stream can have multiple scene indexes with different prompts

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

stream_id
string
required
Example:

"rts-12345"

Response

200 - application/json

List of scene indexes

success
boolean
Example:

true

data
object