ByteDance's next-generation multimodal video model with native synchronized audio. Combines up to 9 reference images, 3 videos, and 3 audio files in a single generation for character-consistent, lip-synced video creation, editing, and extension.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "A cozy cabin in a snowy forest at night, warm light glowing from the windows, gentle snowfall, camera slowly pushing in through the trees",
"duration": 7,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text prompt (max 4000 chars). Use double quotes for dialogue; reference inputs as [Image1], [Video1], [Audio1] |
image | string | No | - | First frame image for image-to-video (cannot combine with reference images) |
last_frame_image | string | No | - | Last frame image (requires a first frame image) |
reference_images | array | No | [] | Up to 9 reference images for character/style consistency |
reference_videos | array | No | [] | Up to 3 reference videos (total โค15s) for motion transfer and editing. Raises per-second price ~25% |
reference_audios | array | No | [] | Up to 3 reference audio files (total โค15s) for audio-driven generation and lip-sync |
duration | integer | No | 5 | Video duration in seconds (1-15). Billed per second of output |
resolution | string | No | 720p | Video resolution. 4K outputs 10-bit H.265/HEVC 480p720p1080p4k |
aspect_ratio | string | No | 16:9 | Aspect ratio. 'adaptive' lets the model choose based on inputs 16:94:31:13:49:1621:99:21adaptive |
generate_audio | boolean | No | true | Generate synchronized audio (dialogue, SFX, background music) |
seed | integer | No | - | Random seed for reproducible generation |
There are 3 ways to provide files for the imagelast_frame_imagereference_imagesreference_videosreference_audios parameters:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=bytedance/seedance-2.0" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Text-to-video with synchronized ambient audio
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "A cozy cabin in a snowy forest at night, warm light glowing from the windows, gentle snowfall, camera slowly pushing in through the trees",
"duration": 7,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'Spoken dialogue generated with matching lip movements
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-2.0",
"input": {
"prompt": "An old fisherman on a pier at dawn turns to the camera and says: \"The sea gives, and the sea takes.\" Waves lap against the wooden posts",
"duration": 8,
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}
}'POST /v1/predictions