All Models
Hunyuan Image 3
Hunyuan Image 3
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 / TierCostCredits
Standard$0.130/img28 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();