Skip to main content
GET
/
v1
/
video
/
generations
/
{task_id}
查询视频任务
curl --request GET \
  --url https://ai.alad.com/v1/video/generations/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "data": {
    "task_id": "<string>",
    "format": "<string>",
    "url": "<string>",
    "error": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string
required

创建任务接口返回的任务 ID。

Example:

"task_abc123"

Response

查询成功

code
integer

0 表示成功。

Example:

0

data
object