Video models
Seedance 2.0
On this page
Seedance 2.0 — high-quality AI video generation.
| modelId | bytedance-seedance-2 |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to video | POST /api/v1/generate | Base generation from a text prompt. |
| Image to video | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=bytedance-seedance-2 | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| first_frame_url | image | optional | — |
| last_frame_url | image | optional | — |
| prompt | textarea | optional | Enter your text here... |
| reference_image_urls | image | optional | Drag and drop or click to upload your image |
| reference_video_urls | image | optional | Drag and drop or click to upload your video |
| reference_audio_urls | image | optional | Drag and drop or click to upload your audio |
| generate_audio | select | optional | false, true |
| resolution | select | optional | 480p, 720p, 1080p, 4k |
| aspect_ratio | select | optional | 16:9, 4:3, 1:1, 3:4, 9:16, 21:9 |
| duration | number | optional | — |
| web_search | select | optional | false, true |
| nsfw_checker | select | optional | false, true |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"bytedance-seedance-2","input":{"prompt":"Slow cinematic push-in, gentle ambient motion, soft light shifting across the frame, subtle parallax and quiet, atmospheric depth.","generate_audio":"true","resolution":"720p","aspect_ratio":"16:9","duration":15,"web_search":"false","nsfw_checker":"true"}}'