FLUX.2 [max]
Description
FLUX.2 [max] from Black Forest Labs delivers production-grade text-to-image generation with enhanced realism, sharper text rendering, and native editing for reliable, repeatable results. A flagship model tuned for professional-quality images without parameter hassle.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.06
per image
Hallucination rate
0%
Supported sizes
1024x1024, 1280x720, 720x1280, 1536x1024, 1024x1536
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.06
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1024 | $0.06 |
| 1024x1536 | $0.06 |
| 1280x720 | $0.06 |
| 1536x1024 | $0.06 |
| 720x1280 | $0.06 |
| auto | $0.06 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1024x1024 1280x720 720x1280 1536x1024 1024x1536 |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -12/12
Overall ELO
1200
Rank
#5
Appearances
3,839
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Subject People: Groups Activities
344 appearances · CI95 -43/43
1294
ELO
Style Cartoon Illustration
298 appearances · CI95 -46/46
1255
ELO
Style Vintage Retro
196 appearances · CI95 -57/57
1254
ELO
Subject Fantasy Mythical
515 appearances · CI95 -33/33
1241
ELO
Subject Commercial
277 appearances · CI95 -46/46
1223
ELO
Style Anime
269 appearances · CI95 -47/47
1219
ELO
Style General Photorealistic
1,372 appearances · CI95 -20/20
1217
ELO
Subject Ui/ux Design
162 appearances · CI95 -68/68
1216
ELO
Style Traditional Art
240 appearances · CI95 -46/46
1202
ELO
Subject Text Typography
178 appearances · CI95 -57/57
1191
ELO
Subject Nature Landscapes
342 appearances · CI95 -39/39
1190
ELO
Subject People: Portraits
390 appearances · CI95 -38/38
1187
ELO
Style Graphic Design Digital Rendering
1,225 appearances · CI95 -21/21
1171
ELO
Subject Futuristic Sci-fi
499 appearances · CI95 -32/32
1166
ELO
Subject Physical Spaces
512 appearances · CI95 -32/32
1161
ELO
Code Samples
Quick start with the Routeway API
const response = await fetch('https://api.routeway.ai/v1/images/generations', {
method: 'POST',
headers: {
'Authorization': 'Bearer <YOUR_API_KEY>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'flux-2-max',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);