All Models
Hunyuan Video Fast
Video
🏔️

Hunyuan Video Fast

Tencent

About

Hunyuan Video Fast is Tencent's speed-optimized video generation model, based on their acclaimed 13B parameter architecture. Delivers cinematic 5-second clips with excellent photorealism and natural camera movement at improved throughput. Perfect for teams that need HunyuanVideo quality with faster iteration cycles.

Pricing Tiers

Resolution / TierCostCredits
720p / 5s$0.380/req82 cr

Use Cases

Photorealistic human videoNatural scene cinematic clipsFaster creative iterationCommercial 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: "hunyuan-video-fast",
    prompt: "A chef carefully plating a gourmet dish in a sunlit Michelin-star kitchen",
    duration: 5,
    resolution: "720p"
  })
});

const { taskId } = await response.json();