v1
latestOpenAPI 3.1.0MIT2026-07-2614271305.9 KBImage Generation
z-image-turbo Interface
- Z Image Turbo is an ultra-fast text-to-image generation model with exceptional quality
- Asynchronous processing mode, use the returned task ID to query
- Generated image links are valid for 24 hours, please save them promptly
post/v1/images/generations
Request body
Example request
{
"model": "z-image-turbo",
"prompt": "a cute cat",
"size": "1:1",
"seed": 12345,
"callback_url": "https://your-domain.com/webhooks/image-task-completed"
}Response
Image generation task created successfully
Example response
{
"created": 1757165031,
"id": "task-unified-1757165031-uyujaw3d",
"model": "z-image-turbo",
"status": "pending",
"task_info": {
"can_cancel": true,
"estimated_time": 10
},
"type": "image",
"usage": {
"billing_rule": "per_call",
"credits_reserved": 5,
"user_group": "default"
}
}