v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB

Get scene index details

get/video/{video_id}/index/scene/{scene_index_id}

Path parameters

video_idstring required
Example:m-12345
scene_index_idstring required
Example:scene-idx-12345

Response

Scene index details

successboolean

Example response

{
  "success": true,
  "data": {
    "id": "scene-idx-12345",
    "video_id": "m-12345",
    "scene_type": "shot",
    "status": "done",
    "scenes": [
      {
        "start_time": 10.5,
        "end_time": 25.3,
        "confidence": 0.85
      }
    ]
  }
}