Black-forest-labsPaidOperational
Flux.1 Kontext Pro
API model name: flux.1-kontext-pro
Flux.1 Kontext Pro is Black-forest-labs's image generation model, served on the Api.Airforce unified API. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Resolutions: 1:1, 16:9, 9:16
Qualities: standard
Specifications
- Provider
- Black-forest-labs
- Type
- image generation model
What is Flux.1 Kontext Pro used for?
- Image generation — marketing visuals, concept art, product shots and illustrations.
Related models
FLUX 1.1 ProBlack-forest-labs · $549.00 / 1MGPT 4o Mini TtsOpenAI · $549.00 / 1MGPT 4o RealtimeOpenAI · $88.32 / 1MGPT 4o TranscribeOpenAI · $13.47 / 1MGPT 4o Transcribe DiarizeOpenAI · $101.02 / 1MGPT AudioOpenAI · $43.10 / 1MGPT Audio 1.5OpenAI · $165.60 / 1MGPT Audio MiniOpenAI · $0.78 / 1MGPT Image 1OpenAI · $9.15 / 1MGPT Image 1 MiniOpenAI · $0.27 / 1MGPT Image 1.5OpenAI · $6.50 / 1MGPT Image 2 COpenAI · $19.50 / 1M
Flux.1 Kontext Pro — frequently asked questions
- How much does Flux.1 Kontext Pro cost?
- Flux.1 Kontext Pro is billed per generation rather than per token. See the pricing page for the current rate.
- What can Flux.1 Kontext Pro do?
- Flux.1 Kontext Pro is Black-forest-labs's image generation model, accessible through the Api.Airforce API.
- Is Flux.1 Kontext Pro free to use?
- Flux.1 Kontext Pro is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use Flux.1 Kontext Pro via the API?
- Flux.1 Kontext Pro is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID flux.1-kontext-pro with your Api.Airforce API key.
- Who makes Flux.1 Kontext Pro?
- Flux.1 Kontext Pro is Black-forest-labs's image generation model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use Flux.1 Kontext Pro via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass flux.1-kontext-pro as the model.
cURL
curl https://api.airforce/v1/images/generations \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux.1-kontext-pro",
"prompt": "a red panda coding"
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
img = client.images.generate(model="flux.1-kontext-pro", prompt="a red panda coding")
print(img.data[0].url)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const img = await client.images.generate({ model: "flux.1-kontext-pro", prompt: "a red panda coding" });
console.log(img.data[0].url);