Models / Doubao Seedance 2.0 Image-to-Video

Doubao Seedance 2.0 Image-to-Video

Qwen Tier 1Proprietary

ByteDance Seedance 2.0 — animate a single reference image. Via doubao gateway.

doubao/seedance-2.0-i2v
Context Window
0
Max Output
0
Providers
1
Released
2026-03

Capabilities

videoimage_to_videoStreaming

Pricing by Provider

ProviderPriceLatency p50Latency p95Status
seedance$0.14 /sec30000ms90000ms

Quick Start

Python
import magicrouter

mr = magicrouter.Client(
    provider_keys={"seedance": "your-api-key"}
)

response = mr.chat(
    "doubao/seedance-2.0-i2v",
    "Your prompt here"
)
print(response.choices[0].message.content)
TypeScript
import { MagicRouter } from "magicrouter";

const mr = new MagicRouter({
  providerKeys: { seedance: "your-api-key" }
});

const response = await mr.chat({
  model: "doubao/seedance-2.0-i2v",
  messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);
cURL
curl http://14.103.147.238:19220/chat/completions \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedance-2-0-260128:image_to_video",
    "messages": [{"role": "user", "content": "Your prompt here"}]
  }'

Use this model

Sign up for free and test Doubao Seedance 2.0 Image-to-Video in the playground

Get Started
Doubao Seedance 2.0 Image-to-Video — MagicRouter