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 on a real-time stream
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>"
}
]
}
}