Routeway Logo
Back to Models
AlibabaCloud

Qwen Image

Available

Description

Latest release (v2509, 25-09). Qwen-Image is an image generation foundation model that excels at complex text rendering.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.03

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1024x1536, 1536x1024, 1536x1536, 768x1024, 1024x768, 512x512, 256x256

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.03

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.03
1024x1536$0.03
1024x768$0.03
1536x1024$0.03
1536x1536$0.03
256x256$0.03
512x512$0.03
768x1024$0.03
auto$0.03

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1024x1536
1536x1024
1536x1536
768x1024
1024x768
512x512
256x256

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: -11/11

Overall ELO

1059

Rank

#63

Appearances

3,693

Category Breakdown

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

Style Anime

285 appearances · CI95 -42/42

1159

ELO

Subject Fantasy Mythical

577 appearances · CI95 -29/29

1138

ELO

Subject People: Groups Activities

402 appearances · CI95 -35/35

1134

ELO

Style Cartoon Illustration

312 appearances · CI95 -40/40

1132

ELO

Style Traditional Art

228 appearances · CI95 -46/46

1118

ELO

Subject Futuristic Sci-fi

442 appearances · CI95 -33/33

1081

ELO

Subject Nature Landscapes

400 appearances · CI95 -35/35

1062

ELO

Style Vintage Retro

144 appearances · CI95 -60/60

1060

ELO

Style General Photorealistic

1,560 appearances · CI95 -18/18

1054

ELO

Subject Physical Spaces

487 appearances · CI95 -31/31

1041

ELO

Subject People: Portraits

392 appearances · CI95 -36/36

1016

ELO

Style Graphic Design Digital Rendering

946 appearances · CI95 -22/22

1009

ELO

Subject Commercial

208 appearances · CI95 -49/49

1005

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

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