Qwen Image 3.0 API

Qwen image generation and editing with Base and Pro variants, multilingual typography, multi-image references, and controllable 1K or 2K output.

Alibaba CloudImage GenerationReleased Jul 21, 2026SingaporeProprietary EndpointNew

About Qwen Image 3.0

Qwen image generation and editing with Base and Pro variants, multilingual typography, multi-image references, and controllable 1K or 2K output.

Also known as Qwen Image, Alibaba Cloud Qwen Image 3.0

image generationimage editingmulti imagetext renderingmultilingual textdense layoutsphotorealism

Qwen Image 3.0 specs

Model ID
qwen-image-3-0
Provider
Alibaba Cloud
Category
Image Generation
Released
Jul 21, 2026
Input
TextImage
Output
Image
Region
Singapore
Endpoints
POST/v1/images/generations
Alternate model IDs
qwen-image-3.0qwen-image-3-0-proqwen-image-3.0-proalibaba/qwen-image-3-0alibaba/qwen-image-3.0alibaba/qwen-image-3-0-proalibaba/qwen-image-3.0-pro

Qwen Image 3.0 API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Base Output (1K or 2K)
per image
$0.030
Pro Output up to 2.25MP (1K)
per image
$0.040
Pro Output above 2.25MP (2K)
per image
$0.075
Input Image (1K or 2K)
per input image
$0.003
Compare on the full pricing page

How to call the Qwen Image 3.0 API

Qwen Image 3.0 runs through POST /v1/images/generations. The request returns a job_id right away; poll GET /v1/jobs/{job_id} until the job completes and read the output URLs from the result. Or add "sync": true to skip polling: the request stays open and returns the finished OpenAI-style image response directly, so OpenAI SDKs work as-is. Get an API key from the EmpirioLabs dashboard.

cURL: submit the job
curl https://api.empiriolabs.ai/v1/images/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen-image-3-0",
    "prompt": "Describe what you want Qwen Image 3.0 to generate."
  }'
cURL: poll for the result
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/images/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "qwen-image-3-0",
        "prompt": "Describe what you want Qwen Image 3.0 to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Full Qwen Image 3.0 API reference

Qwen Image 3.0 API parameters

Request parameters supported by the Qwen Image 3.0 API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
promptstring--Describe the image to create. With input images attached, this becomes the editing instruction. An image-only edit uses a neutral preservation prompt.
model_variantenumqwen-image-3.0-proqwen-image-3.0-pro, qwen-image-3.0Choose Pro for stronger photorealism, dense layouts, fine multilingual typography, and complex edits, or Base for lower-cost generation.
imagearray--One to three reference images as URLs, data URIs, or uploaded image objects.
imagesarray--Plural alias for multiple uploaded image references.
aspect_ratioenumautoauto, 1:1, 16:9, 9:16, 3:2, 2:3, 4:3, 3:4, 5:4, 4:5Optional output aspect ratio. Auto is the default. With a fixed 1K or 2K resolution, Auto uses that tier's square size. With Resolution set to Auto, the model...
resolutionenum2Kauto, 1K, 2KOutput pixel tier. Defaults to 2K, the maximum supported tier. The 1K tier stays at or below 2.25 megapixels, while 2K is above 2.25 megapixels. Auto lets the model...
sizestring--Exact output size as WIDTH*HEIGHT, for example 2048*1536. This overrides aspect_ratio and resolution.
use_custom_sizebooleanfalse-Use custom_width and custom_height instead of the aspect-ratio and resolution presets.
custom_widthnumber-256 to 2048Custom output width in pixels. Total area must be between 512x512 and 2048x2048, with an aspect ratio from 1:8 to 8:1.
custom_heightnumber-256 to 2048Custom output height in pixels. Total area must be between 512x512 and 2048x2048, with an aspect ratio from 1:8 to 8:1.
num_imagesnumber11 to 6Number of output images. Each output is billed separately.
negative_promptstring--Describe visual elements or qualities to avoid in the output.
prompt_extendbooleantrue-Expand the prompt automatically for stronger composition and detail.
prompt_extend_modeenumdirectdirect, agentDirect works for generation and editing. Agent performs deeper prompt refinement and is available for text-to-image requests only.
3 more parameters in the docs

Good to know

Qwen Image 3.0 combines Base and Pro image generation and editing in one model. Pro is selected by default, output starts at 2K, and aspect ratio starts in Auto. Base provides a lower-cost option for fast iteration.

Variants

  • Choose qwen-image-3.0-pro for photorealism, dense layouts, fine multilingual typography, and complex multi-image edits.
  • Choose qwen-image-3.0 for lower-cost generation and routine edits.

Modes

  • Text to image from a prompt.
  • Image editing and reference-guided generation from one to three images.
  • Direct prompt extension works for generation and editing. Agent prompt extension provides deeper refinement for text-to-image requests only.

Output and input limits

  • One to six output images per request.
  • 1K, 2K, automatic, aspect-ratio presets, or an exact custom size.
  • Preset and custom sizes stay between 512x512 and 2048x2048 pixels, with each selected side up to 2048 pixels and aspect ratio from 1:8 to 8:1. Automatic sizing can choose its own dimensions within the 1K or 2K output tiers.
  • Input images can be JPG, JPEG, PNG, BMP, TIFF, WEBP, or GIF, up to 10 MB each.
  • Prompts support up to 4,500 tokens.

Billing

  • Base uses one output rate across 1K and 2K.
  • Pro outputs up to 2.25 megapixels use the 1K rate. Larger Pro outputs use the 2K rate.
  • Every reference image adds the input-image rate shown above.

Performance

  • 1K generations are optimized for interactive iteration. Complex 2K edits can take several minutes.

Content safety

Generated images pass an automated content-safety check. An image flagged as explicit is not returned. Because the image is generated before the check runs, a flagged generation is still billed.

Qwen Image 3.0 API: common questions

How much does the Qwen Image 3.0 API cost?

On EmpirioLabs, Qwen Image 3.0 is billed pay as you go: Base Output (1K or 2K) $0.030 per image; Pro Output up to 2.25MP (1K) $0.040 per image; Pro Output above 2.25MP (2K) $0.075 per image. The live rate card on this page always matches what the API charges.

Which endpoint does Qwen Image 3.0 use?

Qwen Image 3.0 is served through POST /v1/images/generations on api.empiriolabs.ai with standard bearer-token authentication.

Can I try Qwen Image 3.0 in the browser before integrating?

Yes. The EmpirioLabs playground runs Qwen Image 3.0 in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Qwen Image 3.0 API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.