All Models
Video
🎆
PixVerse V4.5
PixVerse
About
PixVerse V4.5 is a versatile video model with excellent style control, enabling creators to dial in specific aesthetics from photorealistic to anime-inspired. Its advanced temporal consistency ensures smooth, flicker-free motion, while vivid color rendering makes generated clips immediately eye-catching for social platforms.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| 720p / 5s | $0.310/req | 67 cr |
Use Cases
Stylized creative contentAnime and illustration videoSocial media eye-catching clipsMulti-style content production
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: "pixverse-v4-5",
prompt: "A magical forest at night with bioluminescent plants and fireflies, anime style",
duration: 5,
resolution: "720p"
})
});
const { taskId } = await response.json();