Flux Dev API
High-quality development model with configurable steps, guidance, and LoRA support. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/flux-dev/runLLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/flux-dev.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
model | string | - |
aspect_ratio | enum | - |
num_outputs | integer | 1 |
seed | integer | - |
Supported Aspect Ratios
Example Outputs
Real outputs generated by this model
A misty mountain valley at dawn, layered ridgelines, a winding river, soft light
A hummingbird hovering beside a trumpet flower, iridescent feathers, macro
A cozy bookshop interior with warm lamplight and towering shelves, reading nook
A charming Parisian cafe corner with a striped awning and flowers, soft morning light
A dramatic desert with towering red rock arches under a starry sky, long exposure
A golden retriever leaping into a lake to fetch a stick, splashing water, sunny day
A vibrant coral reef with tropical fish and a sea turtle, sun rays underwater
A surreal floating island with waterfalls spilling into clouds, golden light
A snow-dusted log cabin glowing in a pine forest at twilight, chimney smoke
A vintage typewriter beside a steaming coffee and open notebook, cinematic light
A retro 1960s diner at dusk, neon signs glowing, classic cars, nostalgic tones
A steaming bowl of ramen with herbs and a soft egg, overhead food photography
A field of vibrant tulips toward a windmill, bright blue sky, Dutch countryside
An orange tabby kitten peeking out of a wicker basket, soft window light
A powerful waterfall through a lush green canyon, mist catching rainbow light
A rustic loaf of crusty bread and red wine on a wooden table, candlelit food photography
A whimsical hot air balloon shaped like a whale over green hills, pastel sky
A modern living room with floor-to-ceiling windows over a misty forest, warm light
A close-up of a bee on a sunflower, wings mid-flutter, macro detail, soft bokeh
A lone red sailboat on a calm turquoise sea at golden hour, minimalist, gentle reflections
A vibrant night street food market, glowing lanterns and sizzling woks, rich color
A cozy attic art studio in afternoon sun, canvases and brushes, warm dust motes
A snow leopard on a rocky Himalayan ledge, piercing eyes, crisp wildlife photography
A serene Japanese tea garden in spring, cherry blossoms over a koi pond, soft morning light
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
a thrilling action sequence of a woman trying to find her favorite candy. The candy wrapper is purple with a pixelated dragon and reads "Pixel Dojo". The woman says "Gotta have that pixel dojo candy. with over 60 ai tools, it's basically zero calories."
A dramatic low-angle photograph of a master martial artist mid-strike inside a sleek modern dojo, shattering a wooden board that explodes into thousands of glowing purple and pink pixel fragments that scatter through the air like embers. The dojo has polished concrete floors, floor-to-ceiling windows revealing a rain-soaked Tokyo cityscape at night, and minimal Japanese architectural details — clean wooden beams, a torii gate silhouette visible through the glass. The pixel fragments cast colored light across the fighter's face and the wet floor reflections. Shot on Sony A7R V, 35mm f/1.4, shallow depth of field, dramatic side lighting from a single overhead spotlight cutting through atmospheric haze, rain streaks visible on the windows. Hyperrealistic, editorial photography, 8K resolution
A luminous pixel dojo temple floating above neon-lit clouds at twilight, its walls made of shimmering translucent screens displaying cascading AI-generated artwork — portraits, landscapes, abstract forms shifting and morphing in real time. Purple and pink energy streams spiral upward from the temple's rooftop pagoda, scattering into thousands of glowing pixel particles that dissolve into stars. A lone creator stands at the temple entrance, silhouetted against the radiant interior light, brush in hand, surrounded by floating holographic canvases. The architecture blends traditional Japanese dojo aesthetics with futuristic cyberpunk elements — wooden beams interlaced with fiber optic cables, paper screens replaced by translucent OLED panels. Dramatic volumetric lighting, ultra-detailed, cinematic composition, 8K quality, purple-to-pink gradient atmosphere
Code Examples
Copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/flux-dev/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A beautiful mountain landscape at golden hour",
"aspect_ratio": "1:1"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 1,
"creditsRemaining": 95,
"expiresAt": "2025-01-23T12:00:00Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2025-01-23T12:00:00Z"
}