FLUX.2 Flex

Black ForestImages

Black Forest Labs FLUX.2 Flex: tunable steps and guidance, strong typography, up to 8 references.

Our price
$0.089
per image

First request

from openai import OpenAI

client = OpenAI(
    base_url="https://api.altrouter.ai/v1",
    api_key="ar-...",
)

img = client.images.generate(
    model="flux-2-flex",
    prompt="a red fox in the snow",
)
print(img.data[0].url)

The interface is OpenAI-compatible: in existing code only the base_url, the key and the model id change — nothing else.

FLUX.2 Flex against its price neighbours

FLUX.2 Flex and its closest neighbours by price: prices and parameters from the AltRouter AI catalog
ModelPriceUnitDiscount
Midjourney V8Midjourney$0.074imageOpen
FLUX.1 Kontext MaxBlack Forest$0.082imageOpen
FLUX.2 Flexthis pageBlack Forest$0.089image
Nano Banana ProGoogle$0.12image−10%Open
Ideogram CharacterIdeogram$0.13image−15%Open

Prices and parameters come from the same catalog as the price above; this is not a benchmark, it is comparable billing terms.

Limits

Pricing is flat — $0.089 per image, regardless of prompt length. Allowed aspect_ratio values: 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3.

There is no subscription: every successful request is billed at the price above, and a failed one is not billed at all. There is no markup over the vendor's official price. No Black Forest account of your own is needed, and no VPN: requests go to api.altrouter.ai and we make the upstream call.

Rate limiting is shared across models and counted per key: 600 requests per minute by default, and a 429 with retry-after: 60 above it. An individual key can get its own limit and a spending cap per day, week, month or lifetime in the dashboard.

Full limits and credits

When to pick FLUX.2 Flex, and when a neighbour

The cheaper neighbour is FLUX.1 Kontext Max: $0.082 per image against $0.089 for FLUX.2 Flex. On the same volume the bill comes out 1.1× smaller. It is the sensible pick where the task is repetitive and high-volume — labelling, classification, short templated answers — the kind of work where quality is bounded by the prompt rather than the model.

The dearer neighbour is Nano Banana Pro: $0.12 per image, or 1.4× the price. On catalog parameters it offers the same capabilities and the same order of context, so the premium is only justified if FLUX.2 Flex falls short on your own task.

Guessing is more expensive than checking: the table above is prices and parameters, not a benchmark, and it cannot tell you which model does better on your own prompt. Switching costs one line — the model id in the request changes, the base_url and the key stay — so running both on your own data takes minutes.

API

OpenAI-compatible image generation endpoint. The result is re-hosted on our CDN and returned as a URL.

POST/v1/images/generations
Body parameters
modelstringrequired"flux-2-flex"
The model id.
promptstringrequired
The text description of the image.
imagestringURL or base64
Reference images for editing.
aspect_ratioenum1:1 · 4:3 · 3:4 · 16:9 · 9:16 · 3:2 · 2:3default 1:1
Output aspect ratio.
resolutionenum1K · 2Kdefault 1K
Resolution tier (affects price).
seednumber0–2147483647
Seed for reproducibility.
stepsnumber1–50
guidancenumber1.5–10
prompt_upsamplingbooleandefault false
Response
createdinteger
Unix creation time (seconds).
dataarray
Images. Each: url (our CDN), b64_json, revised_prompt.
Example
cURLPythonJavaScriptJSON
curl https://api.altrouter.ai/v1/images/generations \
  -H "Authorization: Bearer ar-..." \
  -H "Content-Type: application/json" \
  -d '{
  "model": "flux-2-flex",
  "prompt": "a red fox in the snow",
  "aspect_ratio": "1:1",
  "resolution": "1K"
}'
Errors
400Invalid request.
401Missing or invalid API key.
402Insufficient credits, or the key’s spending cap is exhausted.
404Model not found.
429Rate limit exceeded.

More from Black Forest