All Models
Video
🎬Popular
Seedance V1 Pro
ByteDance
About
Seedance V1 Pro is ByteDance's premium video generation model, delivering exceptional cinematic quality for text-to-video and image-to-video tasks. The Pro tier unlocks higher fidelity motion, richer detail rendering, and more consistent character behavior across frames — ideal for commercial and creative professional workflows.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 480p | $0.150/req | 32 cr |
| 720p | $0.450/req | 97 cr |
| 1080p | $0.760/req | 164 cr |
Use Cases
Commercial advertising videoCinematic storytellingHigh-fidelity product showcasesCreative professional workflows
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2video", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "seedance-v1-pro",
prompt: "Cinematic drone shot over a misty mountain range at dawn, 4K quality",
duration: 5,
resolution: "1080p"
})
});
const { taskId } = await response.json();