curl --request POST \
--url https://api.modellix.ai/api/v1/alibaba/qwen-image-plus/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "A cute cat playing in a garden on a sunny day"
}
'
{
"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"
}
}
}Qwen-image excels in text rendering, especially Chinese. qwen-image-plus and qwen-image share the same capabilities, but qwen-image-plus is more cost-effective.
POST
/
qwen-image-plus
/
async
curl --request POST \
--url https://api.modellix.ai/api/v1/alibaba/qwen-image-plus/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "A cute cat playing in a garden on a sunny day"
}
'
{
"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
Required string length:
1 - 800Example:
"A cute cat playing in a garden on a sunny day"
Negative prompt describing unwanted content
Maximum string length:
500Example:
"blurry, low quality"
Image size (format: width*height)
Available options:
1664*928, 1472*1104, 1328*1328, 1104*1472, 928*1664 Example:
"1664*928"
Number of images to generate
Available options:
1 Example:
1
Random seed for reproducible results
Required range:
0 <= x <= 2147483647Example:
42
Enable intelligent prompt rewriting (adds 3-4s latency)
Example:
true
⌘I