Vidu Q2
Description
Vidu Q2 is a high-end text-to-image model with cinematic lighting and clean composition. Supports up to 4K resolution and flexible aspect ratios.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.03
per image
Hallucination rate
0%
Supported sizes
1080p, 2K, 4K
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.
| 1080p | $0.03 |
| 2K | $0.04 |
| 4K | $0.06 |
| auto | $0.03 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1080p 2K 4K |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Service tiers
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -9/9
Overall ELO
1113
Rank
#35
Appearances
5,402
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Subject People: Groups Activities
593 appearances · CI95 -30/30
1216
ELO
Style Traditional Art
369 appearances · CI95 -36/36
1199
ELO
Subject Fantasy Mythical
877 appearances · CI95 -24/24
1186
ELO
Style Cartoon Illustration
492 appearances · CI95 -33/33
1179
ELO
Subject People: Portraits
658 appearances · CI95 -28/28
1155
ELO
Style Anime
481 appearances · CI95 -33/33
1145
ELO
Style General Photorealistic
2,186 appearances · CI95 -15/15
1132
ELO
Subject Physical Spaces
722 appearances · CI95 -26/26
1129
ELO
Subject Nature Landscapes
566 appearances · CI95 -29/29
1089
ELO
Subject Futuristic Sci-fi
751 appearances · CI95 -25/25
1070
ELO
Subject Commercial
271 appearances · CI95 -43/43
1059
ELO
Style Vintage Retro
226 appearances · CI95 -48/48
1057
ELO
Style Graphic Design Digital Rendering
1,456 appearances · CI95 -18/18
1057
ELO
Subject Text Typography
181 appearances · CI95 -54/54
1056
ELO
Subject Ui/ux Design
165 appearances · CI95 -58/58
964
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: 'vidu-q2',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);