All Models


Image
🎨Popular
FLUX.1 Kontext Pro
Black Forest Labs
About
FLUX.1 Kontext Pro elevates context-aware image generation with enhanced quality and more precise instruction following. Ideal for professional creative workflows that require both text-to-image generation and nuanced image editing — all through a single powerful model with commercial licensing.
Pricing Tiers
| Resolution / Tier | Cost | Credits |
|---|---|---|
| Standard | $0.045/img | 10 cr |
Use Cases
Professional image editingBrand asset generationE-commerce product imageryCreative retouching workflows
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: "flux-kontext-pro",
prompt: "A minimalist product photo of a glass perfume bottle on black marble",
count: 1
})
});
const { taskId } = await response.json();