Routeway Logo
Back to Models
AlibabaCloud

Qwen Image 2.0 Pro

Available

Description

Qwen-Image-2.0-Pro is the premium version of Qwen-Image-2.0, built for creators and professionals who need the highest quality output. It delivers superior visual fidelity with richer detail — think lifelike hair textures, skin tones, fabric, and intricate typography — while also handling complex, multi-element prompts more accurately than the standard model. It's the go-to choice for production-ready work like advertising, branding, and high-impact visual content.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.07

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1280x720, 720x1280, 1536x1024, 1024x1536

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.07

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.07
1024x1536$0.07
1280x720$0.07
1536x1024$0.07
720x1280$0.07
auto$0.07

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1280x720
720x1280
1536x1024
1024x1536

Feature Availability

Capabilities explicitly listed in the current payload.

Image

Available

Yes

Vision

Not listed

No

Function calling

Not listed

No

Reasoning

Not listed

No

Code Samples

Quick start with the Routeway API

const response = await fetch('https://api.routeway.ai/v1/images/generations', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <YOUR_API_KEY>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    model: 'qwen-image-2.0-pro',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

const imageData = await response.json();
console.log(imageData);