GPT-5.4 and GPT-5.4 Mini have been retired · Please switch to another available model
All models
Alibaba · Media API

Qwen Image 3 Pro API

Qwen Image 3 Pro is Alibaba's flagship Qwen-Image 3 route on OmniaKey, tuned for dense layouts, small on-image text, and material-accurate rendering across generation and edits.

Model ID
qwen-image-3-pro
Provider
Alibaba
Modality
AI Image
Per successful call
$0.10
Last verified
2026-09-11

01

Where it fits

Use Qwen Image 3 Pro when a poster, UI mockup, or infographic has to render small text and complex layouts correctly, and drop to Qwen Image 3 for high-volume work where per-call cost leads.

02

What it does

Text to image

Turn a text prompt into a new image.

Image edit

Change an existing image from a prompt and reference input.

03

Call it

Media models run asynchronously. Create a task, poll it until it finishes, then download the signed asset URL.

Create, poll, download
# 1. Create the job. 202 Accepted; the body carries the task id,
#    the pre-charged price, and a poll_url. Reuse one Idempotency-Key
#    across retries so a timeout never starts a second paid job.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks \
  -H "Authorization: Bearer $OMNIAKEY_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: qwen-image-3-pro-001" \
  -d '{
    "model": "qwen-image-3-pro",
    "type": "image",
    "operation": "generate",
    "input": {"prompt": "a paper boat on a quiet lake at sunset"},
    "parameters": {"size": "1024x1024", "quality": "medium"}
  }'

# 2. Poll GET /v1/media/tasks/{id} until status is
#    succeeded | failed | canceled. Progress carries percent and stage.
curl --fail-with-body https://api.omniakey.com/v1/media/tasks/TASK_ID \
  -H "Authorization: Bearer $OMNIAKEY_API_KEY"

# 3. Download assets[0].url before expires_at, or poll again for a
#    fresh signed URL. Failed and canceled jobs are refunded.
curl -sS -o out.png "$(jq -r '.assets[0].url' result.json)"

04

Pricing

Image jobs are billed per successful call, not per token. Failed or canceled jobs are refunded automatically.

Per successful call

$0.10per call

More Alibaba image models

Frequently asked questions

How do I call Qwen Image 3 Pro on OmniaKey?

POST to /v1/media/tasks with the model id, type "image", and operation "generate" or "edit". Reuse one Idempotency-Key across retries so a timeout never starts a second paid job.

What does Qwen Image 3 Pro cost?

Qwen Image 3 Pro bills $0.10 per call. Creation pre-charges that amount from your prepaid balance, and failed or canceled jobs are refunded automatically.

Why does the API return a task id instead of the image?

Provider latency runs from seconds to about a minute, so OmniaKey normalizes every image route into one asynchronous lifecycle. Poll GET /v1/media/tasks/{id} until the status is succeeded, then read the signed asset URL.

Qwen Image 3 Pro API — async image generation · OmniaKey