On this page
quick_reference_all
查询任务状态
1.概述
通过本接口获取任务状态。在发起之前,您需要调用创建视频生成任务,获取到视频的id,作为video_id参数添加到url中使用。
2.请求说明
- 请求方法:
GET - 请求地址
https://gateway.theturbo.ai/v1/videos/{video_id}/remix
3.请求参数
3.1 Head参数
| 参数名称 | 类型 | 必填 | 说明 | 示例值 |
|---|---|---|---|---|
Authorization |
string | 是 | 身份验证所需的 API_KEY,格式Bearer $YOUR_API_KEY |
Bearer $YOUR_API_KEY |
4.请求示例
curl https://gateway.theturbo.ai/v1/videos/video_68f742df11b8819094cfb7c08788ed02 \
-H "Authorization: Bearer $YOUR_API_KEY"
5.响应示例
{
"id": "video_68f742df11b8819094cfb7c08788ed02",
"object": "video",
"created_at": 1761035293,
"status": "completed",
"completed_at": 1761035357,
"error": null,
"expires_at": 1761121693,
"model": "sora-2",
"progress": 100,
"remixed_from_video_id": null,
"seconds": "4",
"size": "1280x720"
}