FLUX.2 [dev] with LoRA support delivers fast, studio-quality text-to-image generation with enhanced realism, crisper text rendering, and personalized styles via custom LoRA adapters. Extends FLUX.2 [dev] with up to 4 LoRAs for brand-specific outputs. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Bezczynny

$0.018za uruchomienie·~55 / $1

A colossal porcelain mask suspended above a velvet baroque table, soft pastel dreamcore lighting, floating dust particles, DV film softness, faint golden glow, vintage floral wallpaper, surreal quiet atmosphere, intricate porcelain cracks, shadows gently swaying, cinematic 16:9 composition, highly detailed, clean edges.

berthe_morisot style, woman with red hair, playing chess at the park, bomb going off in the background

berthe_morisot style, woman playing the guitar, on stage, singing a song, laser lights, punk rocker

A wooden chair floating gently in a fog-tinted living room, pastel blue haze, warped perspective, nostalgic dreamcore mood, soft light beams through curtains, grainy DV aesthetic, drifting shadows, surreal calm atmosphere, highly detailed textures.

A hyper-realistic glass perfume bottle on a marble surface, dramatic hard light, crisp shadows, soft reflections, luxury product photography style.
FLUX.2 [dev] with LoRA support is the personalised version of the lean FLUX.2 [dev] Text-to-Image model. It keeps the fast, stable base behaviour, while letting you plug in up to 4 custom LoRA adapters to inject your own styles, characters, or brand identity into each generation.
FLUX.2 [dev] + LoRA starts from the same lightweight, production-friendly dev model and adds adapter hooks for your own LoRAs. You can mix several adapters in one request, control their strengths independently, and still get the fast turnaround and predictable behaviour that make dev a good “default” engine.
You get the same quick, reliable generations as FLUX.2 [dev] Text-to-Image, plus the ability to load custom LoRAs for specific art styles, brand looks, or recurring characters.
Attach as many as four adapters at once and give each one its own strength (0–4). Combine, for example, a character LoRA, a lighting/style LoRA, and a brand-colour LoRA in one prompt to keep everything consistent across outputs.
Generate 1–4 images per request with the same LoRA stack, making it easy to produce A/B variants, campaign sets, or social content packs that share a coherent visual identity.
Built on the same open FLUX.2 stack as the base dev model, so integrating with your own LoRA training, management, and deployment tooling is straightforward.
LoRA adapters add only a small overhead compared with full fine-tuning, which keeps per-image costs low even when you apply several custom styles.
Simple per-image billing:
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-dev/text-to-image-lora with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Flux 2 Dev Text To Image Lora below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-dev/text-to-image-lora" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"enable_base64_output": false,
"enable_sync_mode": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/flux-2-dev/text-to-image-lora", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"enable_base64_output": false,
"enable_sync_mode": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/flux-2-dev/text-to-image-lora",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1024*1024",
"seed": -1,
"enable_base64_output": false,
"enable_sync_mode": false
}
)
print(output["outputs"][0]) # → URL of the generated outputFlux 2 Dev Text To Image Lora is a WaveSpeedAI model for AI inference, exposed as a REST API on WaveSpeedAI. FLUX.2 [dev] with LoRA support delivers fast, studio-quality text-to-image generation with enhanced realism, crisper text rendering, and personalized styles via custom LoRA adapters. Extends FLUX.2 [dev] with up to 4 LoRAs for brand-specific outputs. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-dev-text-to-image-lora.
Flux 2 Dev Text To Image Lora starts at $0.018 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `size`, `seed`, `enable_base64_output`, `enable_sync_mode`, `loras`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-dev-text-to-image-lora.
Average end-to-end generation time on WaveSpeedAI is around 30 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.