Qwen Image 3.0 Pro Image API
Generate or process images with Qwen Image 3.0 Pro through the PixMind API.
High-resolution image generation and editing with strong text rendering.
Provider
AlibabaModel ID
qwen-image-3.0-proEndpoint
POST /api-platform/v1/generationsModel notes
- The public route currently exposes 1K and 2K pricing tiers.
Request parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Yes | Stable PixMind model ID. Use `qwen-image-3.0-pro`. Allowed values: |
prompt | string | Yes | Natural-language generation or editing instructions. |
resolution | string | No | Output resolution tier. This field affects request pricing. Allowed values: Default: |
aspectRatio | string | No | Requested output aspect ratio. Allowed values: Default: |
referenceImages | string[] (URI) | No | Reference image URLs used for editing, composition, subject, or style guidance. |
Request example
curl https://aihub-admin.aimix.pro/api-platform/v1/generations \
-H "Authorization: Bearer $PIXMIND_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-3.0-pro",
"prompt": "A premium bilingual launch poster with crisp readable typography",
"resolution": "2K",
"aspectRatio": "4:3"
}'const response = await fetch("https://aihub-admin.aimix.pro/api-platform/v1/generations", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.PIXMIND_API_KEY}`,
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "qwen-image-3.0-pro",
"prompt": "A premium bilingual launch poster with crisp readable typography",
"resolution": "2K",
"aspectRatio": "4:3"
})
});
const task = await response.json();Accepted task response
Generation is asynchronous. Save taskId and poll GET /api-platform/v1/tasks/{taskId} until status is ready or failed.
{
"code": 1000,
"data": {
"id": "img_44160",
"taskId": 44160,
"type": "image",
"model": "qwen-image-3.0-pro",
"status": "processing"
}
}API pricing
| Configuration | Price |
|---|---|
| 1K output | $0.040 / image |
| 2K output | $0.090 / image |
API pricing uses the apiPlatform role and is separate from PixMind Studio credits. The accepted task response is the final pricing snapshot.