Back to use cases
🎨
Image Generation
Generate stunning images with FLUX.1 schnell at $0.002 per image — 20× cheaper than DALL-E 3. Serverless, no GPU setup, instant integration.
Price comparison
| Provider | Model | $/image | 1,000 images |
|---|---|---|---|
| OpenAI | DALL-E 3 | $0.040 | $40.00 |
| Stability AI | SD3 Medium | $0.035 | $35.00 |
| Together AI | FLUX schnell | $0.003 | $3.00 |
| Lexora | FLUX.1 schnell | $0.002 | $2.00 |
What you can build
E-commerce product image generators
AI art and creative tools
Social media content generators
Real estate virtual staging apps
Marketing asset generation pipelines
Avatar and profile picture generators
Game asset creation tools
Interior design visualization apps
Integrate in minutes
image-gen.ts
const response = await fetch(
"https://api.lexora.network/v1/images/generations",
{
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.LEXORA_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "black-forest-labs/FLUX.1-schnell",
prompt: "A futuristic cityscape at sunset, cinematic",
n: 1,
size: "1024x1024",
}),
}
);
const { data } = await response.json();
// data[0].url — your generated imageAbout FLUX.1 schnell
FLUX.1 schnell from Black Forest Labs is a guidance-free 4-step diffusion model — the fastest way to generate high-quality images programmatically. It generates 1024×1024 images in seconds, with strong prompt adherence and photo-realistic quality at a fraction of the cost of older models.