Models

Qwen Image 3.0 Pro

Model id: alibaba_qwen/qwen-image-3.0-pro

  • Image generation
  • Multimodal

The higher-quality Qwen Image 3.0 tier for generation and edits.

Best for

Ideal when the standard Qwen image tier is not sharp enough.

Provider
Alibaba Cloud Model Studio
Context window
Not published
Release date
2026-07-21

Pricing

1k · any
$0.0617 / image
2k · any
$0.1157 / image

Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-09-21).

Performance

Reading

Last 7 days

Not enough data to display the chart.

Activity

Tokens

Top 5 tools · last 7 days

Not enough data to display tool activity.

Availability

Availability (%)

Last 7 days

Operational probes
99.9% over 7 days
Samples
9,204

View service status

Quick start

Generate an image with a tonia_ key and the exact model id below.

curl

curl https://pass.tonia.ca:8443/v1/images/generations \
  -H "Authorization: Bearer $TONIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
      "model": "alibaba_qwen/qwen-image-3.0-pro",
      "prompt": "Draw a red fox",
      "n": 1
    }'

Python (tonia SDK)

import os
from tonia import Tonia

client = Tonia(api_key=os.environ["TONIA_API_KEY"])
response = client.images.generate(
    model="alibaba_qwen/qwen-image-3.0-pro",
    prompt="Draw a red fox",
    n=1,
)

TypeScript (tonia SDK)

import { Tonia } from "@tonia-router/sdk";

const client = new Tonia({
  apiKey: process.env.TONIA_API_KEY,
});

const response = await client.images.generate({
  model: "alibaba_qwen/qwen-image-3.0-pro",
  prompt: "Draw a red fox",
  n: 1,
});

Create a key in the portal