Skip to main content
ByteDanceMediumUltra

Seedance 2.0

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.

2090 credits
per 5s 720p video โ€” billed per second (480p 186/s, 720p 419/s, 1080p 1047/s, 4K 2327/s; with reference videos 480p 233/s, 720p 512/s, 1080p 1280/s, 4K 2908/s)
Native audio generation โ€” dialogue, sound effects, and background music synced with visuals
Multimodal reference inputs: up to 9 images, 3 videos, 3 audio files in one pass
Character consistency across shots using reference images
Video editing and extension from a reference video
Up to 4K (10-bit H.265) resolution and 1-15 second duration

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

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
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt (max 4000 chars). Use double quotes for dialogue; reference inputs as [Image1], [Video1], [Audio1]
imagestringNo-First frame image for image-to-video (cannot combine with reference images)
last_frame_imagestringNo-Last frame image (requires a first frame image)
reference_imagesarrayNo[]Up to 9 reference images for character/style consistency
reference_videosarrayNo[]Up to 3 reference videos (total โ‰ค15s) for motion transfer and editing. Raises per-second price ~25%
reference_audiosarrayNo[]Up to 3 reference audio files (total โ‰ค15s) for audio-driven generation and lip-sync
durationintegerNo5Video duration in seconds (1-15). Billed per second of output
resolutionstringNo720pVideo resolution. 4K outputs 10-bit H.265/HEVC
480p720p1080p4k
aspect_ratiostringNo16:9Aspect ratio. 'adaptive' lets the model choose based on inputs
16:94:31:13:49:1621:99:21adaptive
generate_audiobooleanNotrueGenerate synchronized audio (dialogue, SFX, background music)
seedintegerNo-Random seed for reproducible generation

How to Provide File Input

There are 3 ways to provide files for the imagelast_frame_imagereference_imagesreference_videosreference_audios parameters:

Recommended

Direct Upload (Multipart)

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"

Image URL

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"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Cinematic Scene with Audio

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
  }
}'

Dialogue with Lip-Sync

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
  }
}'

Tips & Best Practices

1Billing is per second of output โ€” start with 5 seconds and 720p while iterating, then scale up
2Put spoken dialogue in double quotes ("...") to get matching lip movements and voice
3Label reference inputs in the prompt: 'The character from [Image1] performs the dance from [Video1]'
4Reference videos raise the per-second price ~25% โ€” use them only when you need motion transfer or editing
54K costs 5.5x more per second than 720p โ€” reserve it for final renders

Use Cases

Dialogue scenes with lip-synced speech (quote dialogue in the prompt)
Outfit-change and product showcase videos with reference images
Music-synced short-form content using reference audio
Extending or editing existing footage while preserving motion
Multi-shot narratives with consistent characters