Sora Task Query
OpenAI Format
Sora Task Query
Use GET /v1/videos/{task_id} to query Sora video task status and results.
GET
Sora Task Query
Sora Task Query
OpenAI-format query entry point. If the task was submitted viaPOST /v1/video/create, please use Query Task.
After Sora-series tasks are submitted, query them via GET /v1/videos/{task_id}. The corresponding route layer is videoV1Router.GET("/videos/:task_id", controller.RelayTaskFetch) in router/video-router.go.
- The query path is
GET /v1/videos/{task_id}. - A successful response returns an OpenAI-style
videoobject. - After the task is completed, the result can usually be read from
video_url; if it is missing, the server may also provide a proxied/v1/videos/{task_id}/contentaddress.
Method and Path
Request Example
Response Example
Authentication
Path Parameters
Video task ID.
Response
Task ID.
Always
video.Task status. Common values include
queued, processing, completed, failed, and cancelled.Progress percentage.
Output duration.
Output dimensions.
Video result URL.