Imagen 4
Description
Google's Imagen 4 model. Generates high-quality images with excellent detail and composition. Supports diverse art styles from photorealism to animation.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.04
per image
Hallucination rate
0%
Supported sizes
1:1, 16:9, 9:16, 3:4, 4:3
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.04
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1:1 | $0.04 |
| 16:9 | $0.04 |
| 3:4 | $0.04 |
| 4:3 | $0.04 |
| 9:16 | $0.04 |
| auto | $0.04 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1:1 16:9 9:16 3:4 4:3 |
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: -12/12
Overall ELO
1065
Rank
#61
Appearances
3,353
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
217 appearances · CI95 -47/47
1134
ELO
Subject Text Typography
131 appearances · CI95 -64/64
1125
ELO
Subject Nature Landscapes
320 appearances · CI95 -39/39
1112
ELO
Subject People: Groups Activities
306 appearances · CI95 -40/40
1112
ELO
Style General Photorealistic
1,341 appearances · CI95 -19/19
1106
ELO
Subject Fantasy Mythical
526 appearances · CI95 -30/30
1082
ELO
Subject Physical Spaces
440 appearances · CI95 -33/33
1073
ELO
Subject People: Portraits
415 appearances · CI95 -34/34
1072
ELO
Style Anime
251 appearances · CI95 -44/44
1066
ELO
Subject Commercial
207 appearances · CI95 -49/49
1066
ELO
Style Cartoon Illustration
262 appearances · CI95 -44/44
1040
ELO
Style Vintage Retro
177 appearances · CI95 -53/53
1040
ELO
Subject Futuristic Sci-fi
487 appearances · CI95 -32/32
1016
ELO
Style Graphic Design Digital Rendering
963 appearances · CI95 -22/22
1010
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: 'imagen-4',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);