Seedance 2.0 API

Model-specific Buble API parameters, modes, pricing, and examples for Seedance 2.0.

Seedance 2.0 API

Seedance 2.0 supports broad video workflows, including text-to-video, frame control, reference video, video-to-video, and optional audio inputs.

Model keys

  • doubao/seedance-2.0-fast — Seedance 2.0 Fast
  • doubao/seedance-2.0 — Seedance 2.0

Supported modes and inputs

ModelModeLabelInput requirements
doubao/seedance-2.0-fasttext_to_videoText to VideoPrompt max 20000 chars
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav
doubao/seedance-2.0-fastframes_to_videoFrames to VideoPrompt max 20000 chars
Images start_frame,end_frame: 1-2 files, 30 MB, formats jpg, png, webp, bmp, gif
doubao/seedance-2.0-fastreference_to_videoReference to VideoPrompt max 20000 chars
Images reference: 0-9 files, 30 MB, formats jpeg, png, webp, bmp, tiff, gif
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav
doubao/seedance-2.0-fastvideo_to_videoVideo to VideoPrompt max 20000 chars
Images reference: 0-9 files, 30 MB, formats jpeg, png, webp, bmp, tiff, gif
Videos: 1-3 files, 50 MB, max 15s, formats mp4, mov
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav
doubao/seedance-2.0text_to_videoText to VideoPrompt max 20000 chars
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav
doubao/seedance-2.0frames_to_videoFrames to VideoPrompt max 20000 chars
Images start_frame,end_frame: 1-2 files, 30 MB, formats jpg, png, webp, bmp, gif
doubao/seedance-2.0reference_to_videoReference to VideoPrompt max 20000 chars
Images reference: 0-9 files, 30 MB, formats jpeg, png, webp, bmp, tiff, gif
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav
doubao/seedance-2.0video_to_videoVideo to VideoPrompt max 20000 chars
Images reference: 0-9 files, 30 MB, formats jpeg, png, webp, bmp, tiff, gif
Videos: 1-3 files, 50 MB, max 15s, formats mp4, mov
Audio: 0-3 files, 15 MB, max 15s, formats mp3, wav

Options

ModelOptionDefaultAllowed valuesApplies to
doubao/seedance-2.0-fastduration5s4s, 5s, 6s, 7s, 8s, 9s, 10s, 11s, 12s, 13s, 14s, 15sAll modes
doubao/seedance-2.0-fastresolution720p480p, 720pAll modes
doubao/seedance-2.0-fastaspect_ratio16:916:9, 9:16, 1:1, 4:3, 3:4, 21:9, adaptiveAll modes
doubao/seedance-2.0-fastaudiofalsetrue, falseAll modes
doubao/seedance-2.0-fastweb_searchfalsetrue, falseAll modes
doubao/seedance-2.0duration5s4s, 5s, 6s, 7s, 8s, 9s, 10s, 11s, 12s, 13s, 14s, 15sAll modes
doubao/seedance-2.0resolution720p480p, 720p, 1080pAll modes
doubao/seedance-2.0aspect_ratio16:916:9, 9:16, 1:1, 4:3, 3:4, 21:9All modes
doubao/seedance-2.0audiofalsetrue, falseAll modes
doubao/seedance-2.0web_searchfalsetrue, falseAll modes

Pricing

ModelPricing
doubao/seedance-2.0-fast2 credits per second; option multipliers: resolution={"480p":1,"720p":2}
doubao/seedance-2.03 credits per second; option multipliers: resolution={"480p":1,"720p":2,"1080p":4}

Production guidance

  • Pass mode explicitly.
  • Use only option values listed above.
  • Upload media with POST /api/v1/files before calling media-input modes.
  • Use the exact model key for the variant you want.

Example: text to video

curl https://buble.ai/api/v1/generations \
  -H "Authorization: Bearer $BUBLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao/seedance-2.0-fast",
    "mode": "text_to_video",
    "prompt": "A cinematic product launch shot with slow camera movement, premium lighting, and realistic motion",
    "duration": "5s",
    "resolution": "720p",
    "aspect_ratio": "16:9",
    "audio": "false",
    "web_search": "false"
  }'

Example: media-guided video

curl https://buble.ai/api/v1/generations \
  -H "Authorization: Bearer $BUBLE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao/seedance-2.0-fast",
    "mode": "frames_to_video",
    "prompt": "Animate the source into a polished cinematic motion shot with natural camera movement",
    "start_frame": "https://example.com/start.png",
    "duration": "5s",
    "resolution": "720p",
    "aspect_ratio": "16:9",
    "audio": "false",
    "web_search": "false"
  }'