Skip to main content

Overview

Qwen Image 3.0 Pro is an asynchronous image generation and editing API for higher-fidelity outputs. Use text-to-image for prompt-only generation, or image-to-image when you want to guide the output with one to three reference images.

Endpoint and authentication

Base URL:
All requests require your APIXO API key:
Submit requests also require:

Copy-paste async quickstart

Successful response:
Save the taskId; you need it to poll for the final result.

Poll for result

Processing response:
Success response:
Failed response:
Parse resultJson after state becomes success:

Request body

Text-to-image

Image-to-image

In image-to-image mode, omit aspect_ratio when you want the output to follow the first input image ratio. If you provide aspect_ratio, it must be one of the supported ratios below.

Parameters

string
default:"async"
required
Result delivery mode. Supported values: async, callback. Use async for polling with statusTask, or callback for webhook delivery.
string
Required when request_type is callback. Must be a public HTTPS URL that can receive the final task payload. See Webhooks.
object
required
Qwen Image 3.0 Pro input parameters.

Response format

Submit task response

POST /generateTask/qwen-image-3-0-pro returns a task ID when the task is accepted:
integer
API status code. 200 means the task was accepted.
string
Human-readable status message.
string
Unique task identifier used with the status endpoint.

Status response fields

string
Unique task identifier.
string
Current task state: pending, processing, success, or failed.
string
JSON string containing generated image URLs in resultUrls. Present when state is success.
string
Machine-readable failure code. Present when state is failed.
string
Human-readable failure message. Present when state is failed.
integer
Task creation timestamp in Unix milliseconds.
integer
Task completion timestamp in Unix milliseconds. Present after completion.
integer
Processing duration in milliseconds when available.

Webhook callback mode

Use callback mode when your backend should receive the final result automatically instead of polling.
See Webhooks for delivery requirements and retry behavior.

Billing

Qwen Image 3.0 Pro is billed per generated image. Each accepted task produces one image, and image-to-image pricing also depends on the number of input image URLs. Billing behavior:
For current discounts and market comparison pricing, see Pricing.

Latency and polling

Qwen Image 3.0 Pro tasks are asynchronous. Actual latency varies by prompt complexity, reference image accessibility, selected resolution, and current queue load.
For production queues or batches, use callback mode to avoid frequent polling.
Rate limits and concurrency can vary by account, API key, and model. If you receive 429, slow down requests and retry with backoff. For account-level details, see System APIs.

Errors and troubleshooting

HTTP errors

Request validation

See Error Codes for the full error reference.