Engineering Insight
FLUX.1 Text-to-Image Generation Now Live
Announcing the addition of FLUX.1 schnell and FLUX.1 dev models. Create photorealistic images with perfect text rendering in seconds.
Atul Karena
May 2, 2026•5 min read
FLUX.1 Text-to-Image Generation Now Live
We are thrilled to announce that the **FLUX.1** suite of image generation models is now fully supported on DeepTox. FLUX.1, created by Black Forest Labs, sets a new benchmark in open-source image generation.
Why FLUX.1?
- **Text Rendering**: Unlike older image generators, FLUX.1 can render long text passages, labels, and logos with perfect orthography.
- **Human Anatomy**: Generates hands, eyes, and poses with high realism.
- **Speed**: The *schnell* variant delivers stunning images in just 1 to 4 steps, matching midjourney quality at a fraction of the time.
Interactive API Usage
You can make a standard POST request to start generating artwork:
javascript
const response = await fetch("https://api.deeptox.com/v1/inference/black-forest-labs/FLUX.1-schnell", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
prompt: "A neon sign in a dark alleyway that reads 'DeepTox'",
num_inference_steps: 4
})
});
const data = await response.json();
console.log(data.images[0]); // Base64 or URL
Give it a try directly on our landing page model playgrounds!