Models / Doubao Seedance 2.0 Image-to-Video
Doubao Seedance 2.0 Image-to-Video
Tier 1ProprietaryByteDance Seedance 2.0 — animate a single reference image. Via doubao gateway.
doubao/seedance-2.0-i2vContext Window
0
Max Output
0
Providers
1
Released
2026-03
Capabilities
videoimage_to_videoStreaming
Pricing by Provider
Prices shown are the official rate published by the model provider, before any platform discounts. Your actual rate may be lower based on your account's discount tier.
| Provider | Price | Latency p50 | Latency p95 | Status |
|---|---|---|---|---|
| seedance | $0.14 /sec | 30000ms | 90000ms |
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": "dreamina-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