枭毅API枭毅API
API ReferenceAI Applications
AI Model APIVideosSeedance Format

Create Seedance Video Task (Volcano Official Format)

Use /api/v3/contents/generations/tasks to submit Seedance video tasks (Volcano official compatible format).

POST /api/v3/contents/generations/tasks submits Seedance video tasks using Volcano official compatible format. Supports multimodal inputs via content[] array, including text, image_url, video, and audio types.

POST
/api/v3/contents/generations/tasks

Authorization

BearerAuth
AuthorizationBearer <token>

使用 Bearer Token 认证。 格式: Authorization: Bearer sk-xxxxxx

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v3/contents/generations/tasks" \  -H "Content-Type: application/json" \  -d '{    "model": "dreamina-seedance-2-0-fast-260128",    "content": [      {        "type": "text",        "text": "A white horse runs slowly on a grassland, cinematic shot"      }    ],    "resolution": "720p",    "duration": 5  }'
{
  "id": "task_xxx",
  "task_id": "task_xxx",
  "object": "video",
  "model": "dreamina-seedance-2-0-fast-260128",
  "status": "queued",
  "progress": 0,
  "created_at": 1779348046
}

How is this guide?