AI Model APIVideosSeedance Format
Query Seedance Video Task (Compatible Path)
Use /v1/videos/{task_id} to query Seedance video task status (same functionality as /v1/video/generations/{task_id}).
GET /v1/videos/{task_id} routes to the same handler as /v1/video/generations/{task_id}, with identical functionality. This path is compatible with OpenAI official API format.
Authorization
BearerAuth AuthorizationBearer <token>
使用 Bearer Token 认证。
格式: Authorization: Bearer sk-xxxxxx
In: header
Path Parameters
task_id*string
任务 ID。
Response Body
application/json
curl -X GET "https://example.com/v1/videos/string"{
"code": "success",
"message": "",
"data": {
"task_id": "task_xxx",
"status": "SUCCESS",
"progress": "100%",
"result_url": "https://ark-acg-ap-southeast-1.tos-ap-southeast-1.volces.com/...mp4?...",
"data": {
"id": "cgt-...",
"status": "succeeded",
"content": {
"video_url": "https://ark-acg-ap-southeast-1.tos-ap-southeast-1.volces.com/...mp4?..."
}
}
}
}How is this guide?