Luma UNI 1 API
Luma UNI 1 (Standard + MAX) via Runware. Text-to-image and reference-guided image editing with one prompt, two quality tiers. 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/luma-uni-1/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/luma-uni-1.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 | enum | standard |
aspect_ratio | enum | 1:1 |
num_outputs | integer | 1 |
style | enum | auto |
reference_images | string | - |
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 cozy bookshop interior with warm lamplight and towering shelves, reading nook
A hummingbird hovering beside a trumpet flower, iridescent feathers, macro
A golden retriever leaping into a lake to fetch a stick, splashing water, sunny day
A dramatic desert with towering red rock arches under a starry sky, long exposure
A charming Parisian cafe corner with a striped awning and flowers, soft morning light
A vibrant coral reef with tropical fish and a sea turtle, sun rays underwater
A vintage typewriter beside a steaming coffee and open notebook, cinematic light
A surreal floating island with waterfalls spilling into clouds, golden light
A field of vibrant tulips toward a windmill, bright blue sky, Dutch countryside
A snow-dusted log cabin glowing in a pine forest at twilight, chimney smoke
A steaming bowl of ramen with herbs and a soft egg, overhead food photography
A retro 1960s diner at dusk, neon signs glowing, classic cars, nostalgic tones
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 vibrant night street food market, glowing lanterns and sizzling woks, rich color
A lone red sailboat on a calm turquoise sea at golden hour, minimalist, gentle reflections
A close-up of a bee on a sunflower, wings mid-flutter, macro detail, soft bokeh
A cozy attic art studio in afternoon sun, canvases and brushes, warm dust motes
A serene Japanese tea garden in spring, cherry blossoms over a koi pond, soft morning light
A snow leopard on a rocky Himalayan ledge, piercing eyes, crisp wildlife photography
Code Examples
Standard text-to-image — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/luma-uni-1/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "a hand-drawn map of an alien archipelago at sunset",
"model": "standard",
"aspect_ratio": "16:9"
}'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": "2026-07-15T00:30:32Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"images": [
"https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.png"
]
},
"creditCost": 1,
"expiresAt": "2026-07-15T00:30:32Z"
}