All Models
Video
🏆Popular
Kling v3.0 Pro
Kuaishou
About
Kling v3.0 Pro represents Kuaishou's pinnacle of video generation technology, billed per second for maximum flexibility. The Pro tier unlocks superior texture detail, advanced motion planning, and cinematic-grade output quality. Ideal for production work where visual excellence is non-negotiable.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| Pro / per second | $0.280/s | 60 cr |
Use Cases
Professional film productionPremium ad creativeMusic video sequencesVisual effects pre-viz
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: "kling-v3-pro",
prompt: "A samurai in slow motion drawing their blade at dawn, cherry blossoms falling",
duration: 6,
resolution: "1080p"
})
});
const { taskId } = await response.json();