import requests r = requests.post( "https://api.aimlapi.com/v1/images/generations", headers={"Authorization": "Bearer " + AIMLAPI_KEY}, json={ "model": "luma/uni-1-max", "prompt": "A cat holding a sign that says hello" }, ) print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/images/generations", { method: "POST", headers: { Authorization: `Bearer ${process.env.AIMLAPI_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ "model": "luma/uni-1-max", "prompt": "A cat holding a sign that says hello" }), }); console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/images/generations \ -H "Authorization: Bearer $AIMLAPI_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"luma/uni-1-max","prompt":"A cat holding a sign that says hello"}'
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Output | |
| Benchmark | Score | What it measures | Source | Retrieved |
|---|---|---|---|---|
| Text-to-Image Arena | 1171 (Elo) | Human preference Elo from blind pairwise comparisons of generated images, measured independently by Artificial Analysis | Source | July 16, 2026 |
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
uni-1-max This page | Image generation at scale | |||
| Image generation at scale | ||||
| Image generation at scale | ||||
| Image generation at scale | ||||
| Image generation at scale |
uni-1-max takes image, text as input and returns image.
Yes, uni-1-max accepts image input as well as a text prompt.
uni-1-max was built by Luma AI.
Send a request to https://api.aimlapi.com/v1/images/generations with luma/uni-1-max as the model id.
Yes. uni-1-max is served through AI/ML API, so the same key and endpoint format used for other models applies.
Uni-1 Max is the higher-quality image generation and editing variant of Uni-1, using the same parameters.
Yes, Uni-1 Max is described as an image generation and editing model.
Yes, Uni-1 Max shares the same parameters as Uni-1, differing only in output quality.
Yes, Uni-1 Max includes a web search feature and capability.