FLUX.2 [dev] LoRA
Description
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. Supports up to 4 LoRAs for brand-specific outputs.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.03
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.03
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1024 | $0.03 |
| 1024x1536 | $0.03 |
| 1280x720 | $0.03 |
| 1536x1024 | $0.03 |
| 720x1280 | $0.03 |
| auto | $0.03 |
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
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-dev-lora',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);