Skip to Content
API ReferenceVideo GenerationFetch V2 Task Result

Fetch V2(获取任务结果)

GET /vidu/ent/v2/tasks/{id}/creations

获取 Vidu 视频任务的最终状态与产物地址。Vidu 官方文档:Get Creation  官网:https://www.vidu.studio/ 

Base URL

  • https://api.novapai.ai/router/v1

认证

  • Header: Authorization: Bearer <YOUR_API_KEY>

路径参数

  • id (string, required): 创建任务返回的 task_id

请求示例

curl "https://api.novapai.ai/router/v1/vidu/ent/v2/tasks/916205061116293120/creations" \ -H "Authorization: Bearer <YOUR_API_KEY>"

响应示例

{ "state": "success", "err_code": "", "creations": [ { "id": "your_creations_id", "url": "your_generated_results_url", "cover_url": "your_generated_results_cover_url", "video": { "duration": 3.85, "fps": 16, "resolution": { "width": 688, "height": 384 } } } ] }

状态说明

  • processing: 任务处理中
  • success: 任务已完成,可读取 creations[].url
  • failed: 任务失败,可结合 err_code 排查