All Models
FLUX.1 Kontext Pro
FLUX.1 Kontext Pro
Image
🎨

FLUX.1 Kontext Pro

Black Forest Labs

Popular

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 / TierCostCredits
Standard$0.045/img10 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();