Skip to content
Seedance 2.0 Face is here — generate video from real-person reference photos.Try it now
Back to Models
bytedancebytedance·Video

Dreamina Seedance 2.0

bytedance/dreamina-seedance-2-0-260128
Type
Video
Up to
15s
Resolutions
480p, 720p, 1080p
Arena Elo

About

ByteDance's Dreamina Seedance 2.0 is a multimodal video generation model from the Dreamina platform, supporting both text-to-video and image-to-video. It accepts reference images, videos, and audio for fine-grained control over character identity, camera movement, and style, and can generate synchronized audio. Produces clips up to 15 seconds at 480p, 720p, and 1080p across a wide range of aspect ratios.

Capabilities

Up to
15s
Resolutions
480p, 720p, 1080p
Text-to-video
Yes
Image-to-video
Yes
Audio
Yes
Priced per million tokens; actual cost is based on tokens consumed (video duration × resolution).
Qualityno refwith ref
480p$7.000/M tok$4.300/M tok
720p$7.000/M tok$4.300/M tok
1080p$7.700/M tok$4.700/M tok

Call Dreamina Seedance 2.0 through the ElliotGate API. Full request/response schema and code examples are on the API tab.

curl -X POST https://api.elliotgate.com/v1/videos/bytedance/generations \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-omg-your-api-key" \
  -d '{
    "model": "dreamina-seedance-2-0-260128",
    "content": [
      {
        "type": "text",
        "text": "First-person POV product ad, use Video 1 as the camera movement reference"
      },
      {
        "type": "video_url",
        "video_url": { "url": "https://example.com/ref_video.mp4" },
        "role": "reference_video"
      }
    ],
    "resolution": "720p",
    "ratio": "16:9",
    "duration": 5,
    "generate_audio": true
  }'