curl --request POST \
--url https://api.modellix.ai/api/v1/alibaba/z-image-turbo/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "A futuristic city with neon lights at night"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}Z-Image Turbo is a lightweight text-to-image model that quickly generates images with Chinese and English text rendering support. It always outputs 1 PNG image per request.
POST
/
z-image-turbo
/
async
curl --request POST \
--url https://api.modellix.ai/api/v1/alibaba/z-image-turbo/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "A futuristic city with neon lights at night"
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-abc123",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-abc123"
}
}
}Documentation Index
Fetch the complete documentation index at: https://docs.modellix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key authentication. Format: Bearer YOUR_API_KEY.
Body
application/json
Image description text, supports Chinese and English with text rendering
Required string length:
1 - 800Example:
"A futuristic city with neon lights at night"
Image size (format: width*height). Freely selectable within constraints
Example:
"1024*1536"
Random seed for reproducible results
Required range:
0 <= x <= 2147483647Example:
42
Enable intelligent prompt rewriting to enrich the description
Example:
false
⌘I