# 查询视频任务（ARK 兼容路径）

用 `arkCreateVideoTask` 返回的 `id`（上游任务 ID）查询任务状态。响应字段命名与官方一致，
包含 `id` / `model` / `status` / `created_at` / `updated_at`，成功时会附带 `video_url` 等结果字段。

## GET /v1/contents/generations/tasks/{taskId}

> 查询视频任务（ARK 兼容路径）

用 `arkCreateVideoTask` 返回的 `id`（上游任务 ID）查询任务状态。响应字段命名与官方一致，
包含 `id` / `model` / `status` / `created_at` / `updated_at`，成功时会附带 `video_url` 等结果字段。

### Authentication

`Authorization: Bearer tr-xxx`

### Path Parameters

- **taskId** `string` **(required)**  
  上游任务 ID（即 `arkCreateVideoTask` 返回的 `id`）

### Response

- **id** `string`  
  
- **model** `string`  
  
- **status** ``queued` | `processing` | `succeeded` | `failed``  
  
- **video_url** `string`  
  
- **duration** `integer`  
  
- **created_at** `string`  
  
- **updated_at** `string`  
  

### Error Codes

- `401`: 
- `404`: 任务不存在或不属于当前账号
