Models / Doubao Seedance 2.0 Fusion (multi-ref)
Doubao Seedance 2.0 Fusion (multi-ref)
Tier 1ProprietaryByteDance Seedance 2.0 — compose video from any mix of image/video/audio references. Via doubao gateway.
doubao/seedance-2.0-fusionContext Window
0
Max Output
0
Providers
1
Released
2026-03
Capabilities
videofusion_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-fusion",
"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-fusion",
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:fusion_video",
"messages": [{"role": "user", "content": "Your prompt here"}]
}'Use this model
Sign up for free and test Doubao Seedance 2.0 Fusion (multi-ref) in the playground
Get Started