All Models


Image
🏞️
Hunyuan Image 3
Tencent
About
Hunyuan Image 3 is Tencent's most capable image generation model, offering photorealistic output with nuanced lighting, accurate human anatomy, and exceptional scene composition. Built on Tencent's extensive research, it delivers consistently high-quality results across commercial, editorial, and fine art applications.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| Standard | $0.130/img | 28 cr |
Use Cases
Photorealistic editorial imageryHuman portrait generationCommercial advertising assetsHigh-quality concept art
API Example
JavaScript
const response = await fetch("https://api.lumavo.com/v1/txt2img", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
model: "hunyuan-image-3",
prompt: "A photorealistic portrait of a musician performing on stage with dramatic stage lighting",
count: 1
})
});
const { taskId } = await response.json();