Skip to main content
ByteDanceFastStandard

Seedance 2.0 Mini

Lighter, cheaper variant of ByteDance's Seedance 2.0. Native audio, multimodal reference inputs (images/videos/audio), text-to-video and image-to-video, capped at 720p (no 1080p/4K tier).

1280 credits
per second, tiered by resolution and audio generation
Native synchronized audio generation (dialogue, sound effects, background music)
Multimodal reference inputs โ€” up to 9 reference images, 3 reference videos, 3 reference audio clips
Text-to-video and image-to-video (first/last frame) generation
Intelligent duration mode that auto-picks the best clip length
Budget-tier pricing at up to 720p resolution

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-mini",
  "input": {
    "prompt": "A young woman smiles at the camera and says \"This product is amazing!\" Bright studio lighting, gentle zoom-in.",
    "resolution": "720p",
    "aspect_ratio": "9:16",
    "generate_audio": true,
    "duration": 5
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt for video generation. Maximum 4000 characters. BytePlus recommends keeping prompts under 600 English words for best results.
imagestringNo-Input image for image-to-video generation (first frame). Cannot be combined with reference images.
last_frame_imagestringNo-Input image for last frame generation. Only works if a first frame image is also provided. Cannot be combined with reference images.
reference_imagesarrayNo[]Reference images (up to 9) for character consistency, style guidance, and scene composition. Cannot be used together with first/last frame images. You can reference them in your prompt as [Image1], [Image2], etc.
reference_videosarrayNo[]Reference videos (up to 3, total duration max 15s) for motion transfer, style reference, and editing. Reference them in your prompt as [Video1], [Video2], etc.
reference_audiosarrayNo[]Reference audio files (up to 3, total duration max 15s) for audio-driven generation and lip-sync. Requires at least one reference image or video. Reference them in your prompt as [Audio1], [Audio2], etc.
durationintegerNo5Video duration in seconds. Set to -1 for intelligent duration (model picks the best length).
resolutionstringNo720pVideo resolution.
480p720p
aspect_ratiostringNo16:9Video aspect ratio. Set to 'adaptive' to let the model choose the best ratio based on inputs.
16:94:31:13:49:1621:99:21adaptive
generate_audiobooleanNotrueGenerate synchronized audio with the video, including dialogue (use double quotes in prompt), sound effects, and background music.
seedintegerNo-Random seed. Set 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-mini" \
  -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-mini",
  "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

Social clip with native dialogue

Generate a short vertical clip with synchronized dialogue and background music for social media.

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-mini",
  "input": {
    "prompt": "A young woman smiles at the camera and says \"This product is amazing!\" Bright studio lighting, gentle zoom-in.",
    "resolution": "720p",
    "aspect_ratio": "9:16",
    "generate_audio": true,
    "duration": 5
  }
}'

Character-consistent scene from reference images

Use reference images to keep a character consistent across a generated scene.

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-mini",
  "input": {
    "prompt": "[Image1] walks through a busy night market, neon signs reflecting in the rain-soaked street.",
    "reference_images": [
      "https://example.com/character-ref.jpg"
    ],
    "resolution": "720p",
    "duration": -1
  }
}'

Tips & Best Practices

1Set duration to -1 to let Seedance 2.0 Mini automatically pick the best clip length instead of a fixed 5 seconds.
2Use double quotes around spoken lines in the prompt when generate_audio is on โ€” the model treats quoted text as dialogue.
3Reference images/videos/audios cannot be combined with first/last frame images โ€” choose one input mode per generation.
4This tier caps out at 720p; use a higher-tier Seedance/Ray model if you need 1080p or 4K output.

Use Cases

Budget-friendly social media clips with built-in dialogue and sound
Quick concept previews before committing to a higher-tier video model
Character-consistent short clips using reference images across a series
Motion-transfer edits driven by reference video clips