Images
Generate AI images from text prompts.
POST
/developer/images/generateGenerate a new image from a text prompt.
Request Body
promptstringrequiredText prompt describing the image (max 5000 chars)
sizestring"1024x1024", "1536x1024", or "1024x1536". Default: "1024x1024"
qualitystring"standard" or "hd". Default: "standard"
webhook_urlstringURL to receive a POST when generation completes or fails
Response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"status": "queued",
"image_url": null,
"created_at": "2026-02-08T12:00:00",
"error": null
}GET
/developer/images/{id}Get image status and download URL.
When status is completed, the image_url field contains a presigned download URL valid for 1 hour.