Create a generation
POST/generations
Submit an image generation or edit job. Returns immediately with an opaque job ID to poll via GET /generations/{id}.
Body ParametersJSON
user_id: optional string
Your end-user's stable opaque identifier (no PII). Forwarded to upstream model providers as their per-user tagging field so trust & safety violations can be attributed to a specific end-user rather than the whole API account. Also used for per-end-user usage breakdowns in /v1/usage. Strongly recommended for partner integrations.
maxLength256
Create a generation
curl https://agents.lumalabs.ai/v1/generations \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LUMA_AGENTS_API_KEY" \
-d '{
"prompt": "A glass of iced coffee on a marble countertop, morning light streaming through a window"
}'{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "created_at",
"model": "uni-1",
"state": "queued",
"type": "image",
"failure_code": "content_moderated",
"failure_reason": "failure_reason",
"output": [
{
"type": "type",
"url": "https://example.com"
}
]
}Returns Examples
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "created_at",
"model": "uni-1",
"state": "queued",
"type": "image",
"failure_code": "content_moderated",
"failure_reason": "failure_reason",
"output": [
{
"type": "type",
"url": "https://example.com"
}
]
}