All Models
Video
🎞️
Kling V1.6
Kuaishou
About
Kling V1.6 by Kuaishou is a battle-tested video generation model known for its reliable motion quality and strong human subject rendering. Excellent for creative projects requiring consistent output across a variety of scenes and subjects, from action sequences to lifestyle content.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 720p / 5s | $0.340/req | 73 cr |
Use Cases
Human-centric video contentAction and lifestyle sequencesConsistent batch generationSocial media short clips
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-v1-6",
prompt: "A chef elegantly plating a gourmet dish in a modern kitchen",
duration: 5,
resolution: "720p"
})
});
const { taskId } = await response.json();