curl --request POST \
--url https://api.modellix.ai/api/v1/minimax/minimax-image-01-live-i2i/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "Cyberpunk style portrait",
"subject_reference_images": [
"https://example.com/reference.jpg"
]
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-def456",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-def456"
}
}
}MiniMax’s multimodal vision model that blends text-to-image generation with visual reasoning for seamless cross-modal tasks.
curl --request POST \
--url https://api.modellix.ai/api/v1/minimax/minimax-image-01-live-i2i/async \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt": "Cyberpunk style portrait",
"subject_reference_images": [
"https://example.com/reference.jpg"
]
}
'{
"code": 0,
"message": "success",
"data": {
"status": "pending",
"task_id": "task-def456",
"model_id": "model-123",
"get_result": {
"method": "GET",
"url": "https://api.modellix.ai/api/v1/tasks/task-def456"
}
}
}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
Image description text, supports Chinese and English
1 - 1500"A girl in futuristic style"
Reference image URLs for image-to-image generation. Supports public HTTPS URLs or Base64 Data URLs
1 - 10 elementsImage URL or Base64 Data URL (data:image/jpeg;base64,...). Image requirements: JPG/JPEG/PNG format, <10MB, best with single front-facing portrait photo
["https://example.com/reference.jpg"]Image aspect ratio. If both aspect_ratio and width/height are provided, aspect_ratio takes priority
1:1, 16:9, 4:3, 3:2, 2:3, 3:4, 9:16, 21:9 "1:1"
Image width in pixels (must be used with height). Must be divisible by 8. If aspect_ratio is provided, width/height will be ignored
512 <= x <= 20481024
Image height in pixels (must be used with width). Must be divisible by 8. If aspect_ratio is provided, width/height will be ignored
512 <= x <= 20481024
Random seed for reproducible results. Use the same seed with same parameters to generate identical images
x >= 042
Number of images to generate per request
1 <= x <= 91
Enable automatic prompt optimization to improve generation quality
false