All Models
Video
🌱
Seedance V1 Lite
ByteDance
About
Seedance V1 Lite is ByteDance's accessible entry into the Seedance family, producing cinematic 5-second video clips with smooth motion and strong prompt adherence. Supports text-to-video and image-to-video, with resolution options from 480p to 1080p. Ideal for high-volume production where cost efficiency is key.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 480p | $0.100/req | 22 cr |
| 720p | $0.280/req | 60 cr |
| 1080p | $0.550/req | 119 cr |
Use Cases
High-volume social media videoRapid creative iterationCost-effective product demosBatch content generation
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-lite",
prompt: "A sunflower field swaying in a gentle breeze at golden hour",
duration: 5,
resolution: "720p"
})
});
const { taskId } = await response.json();