v5

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

Describe video frame

post/video/{video_id}/frame/{frame_id}/describe/

Path parameters

video_idstring required
Example:m-12345
frame_idstring required
Example:frame-123

Request body

promptstring
model_namestring

Example request

{
  "prompt": "Describe this frame",
  "model_name": "gpt-4-vision"
}

Response

Frame description generated

successboolean

Example response

{
  "success": true,
  "data": {
    "description": "Frame description text"
  }
}