“Create a clean, modern vector infographic poster about the Apollo 11 mission. NASA-inspired palette (navy, white, muted red, light gray). Flat-vector style, crisp lines, consistent iconography, subtle gradients only. Steps (stop at landing): 1. Launch (Saturn Vicon) 2. Earth Orbit (Earth + orbit ring icon) 3. Translunar (trajectory arc icon) 4. Lunar Orbit (Moon + orbit ring icon) 5. Descent (lunar module descending icon) 6. Landing (lunar module on the surface icon) Small supporting elements (minimal text): • Crew strip: three silhouette icons with only last names: Armstrong, Aldrin, Collins. • Landing site marker: Moon pin labeled "Tranquility" only. Layout constraints: generous margins, large readable labels, clean background with subtle stars. Vector-only, print-poster look, high resolution.”
Fast distilled version of Black Forest Labs' FLUX.2 [dev] optimized for speed and cost efficiency.
Details
flux.2-dev-flash
Starting from
Prices shown are in USD · Some prices estimated from per-megapixel or per-token pricing
Full pricing detailsProvider Performance
Fastest generation through fal at 4,327ms median latency with 100.0% success rate.
Aggregated from real API requests over the last 30 days.
Generation Time
Success Rate
Time to First Byte
Provider Rankings
| # | Provider | p50 Gen Time | p95 Gen Time | Success Rate | TTFB (p50) |
|---|---|---|---|---|---|
| 1 | fal | 4,327ms | 8,442ms | 100.0% | 3,867ms |
Providers & Pricing (2)
FLUX.2 [dev] Flash is available from 2 providers, with per-image pricing starting at $0.005 through fal.ai.
All modes
fal/flux.2-dev-flash
fal/flux.2-dev-flash-edit
Input
Output
Pricing Notes (4)
- • Resolution is rounded up to the next megapixel, separately for each reference image and the generated image
- • 1 megapixel = 1024x1024 pixels
- • Each reference image is counted separately (minimum 1 MP each)
- • Images exceeding 4 megapixels are resized to 4 megapixels
FLUX.2 [dev] Flash API OpenAI-compatible
Integrate FLUX.2 [dev] Flash via Lumenfall’s OpenAI-compatible API to programmatically generate high-resolution images and perform complex image editing. This endpoint provides low-latency access to fast-distilled text-to-image capabilities for real-time media applications.
https://api.lumenfall.ai/openai/v1
flux.2-dev-flash
Code Examples
Text to Image
/v1/images/generationscurl -X POST \
https://api.lumenfall.ai/openai/v1/images/generations \
-H "Authorization: Bearer $LUMENFALL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux.2-dev-flash",
"prompt": "",
"size": "1024x1024"
}'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }
import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'YOUR_API_KEY',
baseURL: 'https://api.lumenfall.ai/openai/v1'
});
const response = await client.images.generate({
model: 'flux.2-dev-flash',
prompt: '',
size: '1024x1024'
});
// { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
console.log(response.data[0].url);
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.lumenfall.ai/openai/v1"
)
response = client.images.generate(
model="flux.2-dev-flash",
prompt="",
size="1024x1024"
)
# { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] }
print(response.data[0].url)
Image Edit
/v1/images/editsParameter Reference
Core Parameters
| Parameter | Type | Description | Modes |
|---|---|---|---|
prompt
|
string | Required. Edit instruction for the image |
T2I
Edit
|
seed
|
integer | Random seed for reproducibility |
T2I
Edit
|
Size & Layout
| Parameter | Type | Description | Modes |
|---|---|---|---|
size
|
string |
Image dimensions as WxH pixels (e.g. "1024x1024") or aspect ratio (e.g. "16:9")
WxH determines both shape and scale (aspect_ratio and resolution are ignored when size is provided). W:H format is equivalent to aspect_ratio.
|
T2I
Edit
|
aspect_ratio
|
string |
Aspect ratio of the output image (e.g. "16:9", "1:1")
Controls shape independently of scale. Use with resolution to control both. If size is also provided, size takes precedence. Any ratio is accepted and mapped to the nearest supported value.
|
T2I
Edit
|
resolution
|
string |
Output resolution tier (e.g. "1K", "4K")
Controls scale independently of shape. Higher tiers produce larger images and cost more. If size is also provided, size takes precedence for scale. Any tier is accepted and mapped to the nearest supported value.
|
T2I
Edit
|
size
Exact pixel dimensions
"1920x1080"
aspect_ratio
Shape only, default scale
"16:9"
resolution
Scale tier, preserves shape
"1K"
Priority when combined
size is most specific and always wins. aspect_ratio and resolution control shape and scale independently.
How matching works
7:1 on a model with
4:1 and 8:1,
you get 8:1.
0.5K 1K 2K 4K)
or megapixel tiers (0.25 1).
If the exact tier isn't available, you get the nearest one.
Media Inputs
| Parameter | Type | Description | Modes |
|---|---|---|---|
image
|
file |
Required.
Input image(s) to edit
Supports PNG, JPEG, WebP.
|
T2I
Edit
|
Output & Format
| Parameter | Type | Description | Modes |
|---|---|---|---|
response_format
|
string |
How to return the image
url
b64_json
Default:
"url" |
T2I
Edit
|
output_format
|
string |
Output image format
png
jpeg
gif
webp
avif
Gateway converts to requested format if provider doesn't support it natively.
|
T2I
Edit
|
output_compression
|
integer | Compression level for lossy formats (JPEG, WebP, AVIF) |
T2I
Edit
|
n
|
integer |
Number of images to generate
Default:
1Gateway generates multiple images in parallel even if provider only supports 1.
|
T2I
Edit
|
Additional Parameters
| Parameter | Type | Description | Modes |
|---|---|---|---|
cfg_scale
|
number | Classifier-free guidance scale — higher values stick more closely to the prompt |
T2I
Edit
|
enable_prompt_expansion
fal
|
boolean | If set to true, the prompt will be expanded for better results. |
T2I
Edit
|
enable_safety_checker
fal
|
boolean | If set to true, the safety checker will be enabled. |
T2I
Edit
|
sync_mode
fal
|
boolean | If `True`, the media will be returned as a data URI and the output data won't be available in the request history. |
T2I
Edit
|
Parameter Normalization
How we handle parameters across different providers
Not every provider speaks the same language. When you send a parameter, we handle it in one of four ways depending on what the model supports:
| Behavior | What happens | Example |
|---|---|---|
passthrough |
Sent as-is to the provider | style, quality |
renamed |
Same value, mapped to the field name the provider expects | prompt |
converted |
Transformed to the provider's native format | size |
emulated |
Works even if the provider has no concept of it | n, response_format |
Parameters we don't recognize pass straight through to the upstream API, so provider-specific options still work.
FLUX.2 [dev] Flash Benchmarks
FLUX.2 [dev] Flash holds the #7 rank in the text-to-image arena with a competitive Elo rating of 1262. This distilled version achieves high-speed generation while maintaining elite status among leading diffusion models.
Text-to-Image Landscape
Elo vs Cost
Elo vs Speed
8 without speed data omitted.
Competition Results
“A candid street photo of an elderly Japanese man repairing a red bicycle in light rain, reflections on wet pavement, shallow depth of field, 50mm lens, natural skin texture, imperfect framing, motion blur from passing cars, cinematic but realistic, no stylization.”
“Close portrait of a battle-worn paladin in ornate engraved plate armor, hair braided with small beads, faint scars and dirt on the skin, warm torchlight reflecting off metal, shallow depth of field, bokeh sparks, lifelike eyes, highly detailed texture on leather straps and cloth underlayer.”
Uncategorized
“Perfectly symmetrical mandala made entirely of real flowers, petals, leaves, fruits, and seeds in vibrant natural colors, intricate layered patterns with radial symmetry, top-down view on a soft neutral background, hyper-detailed organic textures and subtle shadows, photorealistic, 8K masterpiece.”
“A glass cube on a wooden table. Inside the cube is a small blue sphere. On top of the cube sits a red book. A green plant is behind the cube, partially visible through the glass. Soft window light from the left.”
“Create a clear, 45° top-down isometric miniature 3D cartoon scene of Japan's signature dish: sushi, with soft refined textures, realistic PBR materials, gentle lighting, on a small raised diorama base with minimal garnish and plate. Solid light blue background. At top-center: 'JAPAN' in large bold text, 'SUSHI' below it, small flag icon. Perfectly centered, ultra-clean, high-clarity, square format.”
“Hyper-photorealistic scene of fluffy baby animals—a golden retriever puppy, tabby kitten, baby bunny, and red fox kit—with big expressive eyes and ultra-detailed soft fur, playfully chasing butterflies and tumbling together in a lush wildflower meadow, warm golden sunrise light with god rays and dew sparkles, joyful wholesome vibe, 8K masterpiece.”
“Hyper-photorealistic full-body portrait of a female superhero standing triumphantly on a New York skyscraper rooftop at golden sunset, wearing a classic modest superhero costume with flowing cape, chest emblem, gloves, and boots in red and blue colors, practical design, short hair, strong determined heroic expression looking into the distance, powerful confident stance with hands on hips and cape billowing dramatically in the wind, detailed urban cityscape background, warm natural sunlight with sharp shadows and fabric highlights, ultra-sharp textures on suit, hair, and concrete, 8K masterpiece, empowering family-friendly style.”
“Close portrait of a battle-worn paladin in ornate engraved plate armor, hair braided with small beads, faint scars and dirt on the skin, warm torchlight reflecting off metal, shallow depth of field, bokeh sparks, lifelike eyes, highly detailed texture on leather straps and cloth underlayer.”
Top Matchups
See how FLUX.2 [dev] Flash performs head-to-head against other AI models, ranked by community votes in blind comparisons.
vs Stable Diffusion 3.5 Large
Challenge: Apollo 11: Journey to Tranquility
67% W · 0% L · 33% T
vs FLUX.2 [dev] Turbo
Challenge: Intricate Floral Mandala
0% W · 33% L · 67% T
vs FLUX.2 [dev] Turbo
Challenge: Geometric Composition
50% W · 50% L
vs Nano Banana 2
Challenge: Fantasy Warrior
100% W · 0% L
FLUX.2 [dev] Flash is best for
See all Use CasesThis model is the top-ranked generator for text rendering with a 46.2% win rate and secures #5 for portrait generation. While it excels at typography and human subjects, it ranks lower for photorealism with a 30.0% win rate compared to non-distilled models.
Gallery
View all 13 imagesFLUX.2 [dev] Flash FAQ
How much does FLUX.2 [dev] Flash cost?
FLUX.2 [dev] Flash starts at $0.005 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing.
How do I use FLUX.2 [dev] Flash via API?
You can use FLUX.2 [dev] Flash through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "flux.2-dev-flash". Code examples are available in Python, JavaScript, and cURL.
Which providers offer FLUX.2 [dev] Flash?
FLUX.2 [dev] Flash is available through fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider.
What is the maximum resolution for FLUX.2 [dev] Flash?
FLUX.2 [dev] Flash supports images up to 2048x2048 resolution.
Overview
FLUX.2 [dev] Flash is a distilled, high-speed variant of Black Forest Labs’ FLUX.2 [dev] model, developed by fal. It is a text-to-image and image-to-image model architected to provide high-fidelity visual output with significantly lower latency and inference costs than the standard base model. By utilizing distillation techniques, it maintains the structural intelligence of the FLUX.2 architecture while requiring fewer sampling steps to produce a final image.
Strengths
- Inference Speed: Significantly reduces generation time compared to the standard FLUX.2 [dev] model, making it suitable for near real-time applications and rapid prototyping.
- Text Rendering: Retains the core architectural ability to render complex, legible text within generated images with high accuracy.
- Prompt Adherence: Shows strong alignment with complex, multi-layered natural language prompts, following specific instructions regarding composition and object placement.
- Cost Efficiency: With a starting price of $0.005, it offers a more economical pathway for developers to run high-volume image generation workloads without a proportional increase in compute spend.
Limitations
- Non-Commercial License: Distributed under a non-commercial license, which restricts its use to research, hobbyist projects, and personal experimentation rather than production-grade commercial products.
- Fine Detail Compression: As a distilled model, it may exhibit slightly less texture nuance or micro-detail in extremely complex scenes compared to the full-parameter version of FLUX.2 [dev].
- Step Sensitivity: While optimized for fewer steps, pushing the model to extremely low step counts (e.g., 1-2 steps) may result in occasional artifacts not present in the standard dev model.
Technical Background
FLUX.2 [dev] Flash belongs to the FLUX.2 family of flow-matching transformer models. It employs a distillation process designed to compress the sampling trajectory, allowing the model to achieve convergence in a fraction of the iterations required by the original teacher model. This approach prioritizes computational efficiency while preserving the underlying latent representation space established by Black Forest Labs.
Best For
This model is ideal for developers building interactive creative tools, rapid ideation workflows, or research projects where low latency is critical. It is particularly effective for generating UI mockups, social media assets, or storyboard frames where fast iteration is more valuable than maximum-parameter rendering. FLUX.2 [dev] Flash is available for testing and integration through Lumenfall’s unified API and interactive playground.
Try FLUX.2 [dev] Flash in Playground
Generate images with custom prompts — no API key needed.