Create image from text - Z-Image
Generate high-quality images from text descriptions using the Z-Image turbo model.
Key Features:
- Superior speed with turbo architecture
- High-quality image generation
- Flexible image size configuration
- Supports LoRA and ControlNet variants
Best for:
- Fast prototyping and iteration
- High-volume image generation
- Cost-effective production workloads
Authorizations
Your Magnific API key. Required for authentication. Learn how to obtain an API key
Body
Text description of the image you want to generate.
Tips:
- Be specific about visual details, composition, and style
- Z-Image excels at fast, high-quality image generation
- Works well with detailed scene descriptions
Examples:
- Simple: "A suited raccoon smoking a cigar"
- Detailed: "A cyberpunk city street at night, neon signs reflecting on wet pavement, flying cars in the distance"
4096"A suited raccoon smoking a cigar"
Optional callback URL that will receive asynchronous notifications whenever the task changes status. The payload sent to this URL is the same as the corresponding GET endpoint response, but without the data field.
"https://www.example.com/webhook"
The aspect ratio and size of the generated image.
If not specified, defaults to square_hd (1024x1024).
Available sizes:
square: 512x512 pixelssquare_hd: 1024x1024 pixels (default)portrait_3_4: 768x1024 pixelsportrait_9_16: 576x1024 pixelslandscape_4_3: 1024x768 pixelslandscape_16_9: 1024x576 pixels
square, square_hd, portrait_3_4, portrait_9_16, landscape_4_3, landscape_16_9 "square_hd"
The number of inference steps to perform. Higher values may produce more detailed images but take longer. For Z-Image turbo, 8 steps is recommended for optimal speed/quality balance.
1 <= x <= 508
Random seed for reproducibility. Using the same seed with identical parameters produces the same image. Useful for iterating on a design or creating variations.
0 <= x <= 429496729542
The format of the generated image.
png: Lossless format, best for images with text or sharp edgesjpeg: Compressed format, smaller file size
jpeg, png "png"
Whether to enable the content safety checker. When enabled, the model filters potentially unsafe content.
Response
OK - The request has succeeded and the Z-Image process has started.
{
"task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"status": "CREATED",
"generated": [
"https://openapi-generator.tech",
"https://openapi-generator.tech"
]
}