Documentation Index
Fetch the complete documentation index at: https://chatgpttech.mobi/docs/llms.txt
Use this file to discover all available pages before exploring further.
Available models
Use Seedance in the dashboard
Open model page
| Model | Model ID | Duration | Aspect ratio | Price |
|---|---|---|---|---|
| Seedance 2.0 | doubao/doubao-seedance-2-0-260128 | 5s / 10s | 16:9 / 9:16 / 1:1 | $0.28 / generation |
How it works
Video generation is a two-step async process: submit a task, then poll for the result.Submit a generation task
Send a The response returns a task ID you’ll use to check progress:
POST request to /v1/generation/tasks:Task status reference
| Status | Description |
|---|---|
pending | Queued, waiting to be processed |
processing | Generation in progress |
completed | Done — video_url is available |
failed | Generation failed — see the error field for details |
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | ✓ | Model ID |
content | array | ✓ | Prompt array. Each item has type of text or image_url |
ratio | string | — | Aspect ratio: 16:9 (default), 9:16, or 1:1 |
duration | number | — | Duration in seconds: 5 (default) or 10 |
resolution | string | — | Output resolution: 480p, 720p, or 1080p (default) |
Note: Video generation models are not available through/v1/chat/completions. Use/v1/generation/tasksfor all video generation requests.