Routeway Logo
Back to Models
AlibabaCloud

Qwen Image Max

Available

Description

Qwen Image Max is a text-to-image model with high-quality image generation supporting Chinese and English prompts.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.08

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.08

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

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

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

Benchmark Summary

Overall image benchmark metrics currently available. CI95: -12/12

Overall ELO

1151

Rank

#16

Appearances

3,172

Category Breakdown

Available per-category ELO results from the current benchmark payload.

Subject People: Groups Activities

346 appearances · CI95 -39/39

1202

ELO

Style General Photorealistic

1,278 appearances · CI95 -20/20

1191

ELO

Subject Nature Landscapes

312 appearances · CI95 -40/40

1179

ELO

Style Cartoon Illustration

297 appearances · CI95 -42/42

1171

ELO

Subject Fantasy Mythical

525 appearances · CI95 -31/31

1169

ELO

Style Traditional Art

193 appearances · CI95 -50/50

1162

ELO

Subject Futuristic Sci-fi

419 appearances · CI95 -35/35

1155

ELO

Subject Commercial

181 appearances · CI95 -55/55

1148

ELO

Subject People: Portraits

390 appearances · CI95 -36/36

1133

ELO

Subject Physical Spaces

419 appearances · CI95 -34/34

1132

ELO

Style Graphic Design Digital Rendering

880 appearances · CI95 -24/24

1120

ELO

Style Anime

251 appearances · CI95 -45/45

1109

ELO

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-max',
    prompt: 'A futuristic city skyline at sunset',
    size: '1024x1024',
  })
});

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