All Models
Seedance V1 Pro
Video
🎬

Seedance V1 Pro

ByteDance

Popular

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 / TierCostCredits
480p$0.150/req32 cr
720p$0.450/req97 cr
1080p$0.760/req164 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();