GET
https://zx1.deepwl.net
/
vidu
/
ent
/
v2
/
task
/
{task_id}
/
creations
Vidu 查询任务
curl --request GET \
  --url https://zx1.deepwl.net/vidu/ent/v2/task/{task_id}/creations \
  --header 'Authorization: Bearer <token>'
{
  "id": "48038932-0ff5-4251-8b4b-7a76c09fd114",
  "status": "completed",
  "video_url": "https://example.com/video/aigcVideoGenFile.mp4",
  "status_update_time": 1774494622
}

Vidu 查询任务

Vidu 官方格式任务查询接口,用于查询视频生成任务的状态与结果。
  • 路由入口是 GET /vidu/ent/v2/task/{task_id}/creations
  • 通过路径参数 task_id 指定要查询的任务。
  • 返回任务状态(processingcompletedfailed)及视频下载地址。

方法与路径

GET /vidu/ent/v2/task/{task_id}/creations

请求示例

curl -X GET https://zx1.deepwl.net/vidu/ent/v2/task/48038932-0ff5-4251-8b4b-7a76c09fd114/creations \
  -H "Authorization: Bearer YOUR_API_KEY"

请求参数

task_id
string
必填
任务 ID。创建任务时返回的 task_id

认证

Authorization: Bearer YOUR_API_KEY

响应示例

{
  "id": "48038932-0ff5-4251-8b4b-7a76c09fd114",
  "status": "completed",
  "video_url": "https://example.com/video/aigcVideoGenFile.mp4",
  "status_update_time": 1774494622
}

Response

id
string
任务 ID。
status
string
任务状态。可选值:processing(处理中)、completed(已完成)、failed(失败)。
video_url
string
视频下载地址(仅在 completed 状态下返回)。
status_update_time
integer
状态更新时间戳(Unix 时间戳)。

状态说明

状态说明
processing任务处理中
completed任务完成,可获取视频
failed任务失败

相关接口