Skip to main content

Get Video Task Status

OpenAI-compatible video task status query interface.

Returns detailed status information for a video task.

Try It

GET/v1/videos/{task_id}https://api-platform.ope.ai

Authentication

Uses Bearer Token authentication.

  • Header: Authorization: Bearer <token>
  • Example: Authorization: Bearer sk-xxxxxx

Path parameters

ParameterTypeRequiredDescription
task_idstringYesVideo task ID

Request examples

The domain below is an example: https://api-platform.ope.ai. Content references getvideo.

curl -X GET "https://api-platform.ope.ai/v1/videos/{task_id}" \
-H "Authorization: Bearer $OPEAI_API_KEY"

Response examples

{
"id": "video_690d9b52e2b081908a05ded32cbfc629",
"object": "video",
"status": "completed",
"created_at": 1762499410,
"progress": 100,
"model": "sora-2",
"prompt": "",
"size": "1280x720",
"seconds": "4"
}