Grok Imagine Image
Description
Generate highly aesthetic images with xAI's Grok Imagine Image model.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.02
per image
Hallucination rate
0%
Supported sizes
2:1, 20:9, 19.5:9, 16:9, 4:3, 3:2, 1:1, 2:3, 3:4, 9:16, 9:19.5, 9:20, 1:2
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.02
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1:1 | $0.02 |
| 1:2 | $0.02 |
| 16:9 | $0.02 |
| 19.5:9 | $0.02 |
| 2:1 | $0.02 |
| 2:3 | $0.02 |
| 20:9 | $0.02 |
| 3:2 | $0.02 |
| 3:4 | $0.02 |
| 4:3 | $0.02 |
| 9:16 | $0.02 |
| 9:19.5 | $0.02 |
| 9:20 | $0.02 |
| auto | $0.02 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 2:1 20:9 19.5:9 16:9 4:3 3:2 1:1 2:3 3:4 9:16 9:19.5 9:20 1:2 |
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: -8/8
Overall ELO
1171
Rank
#11
Appearances
6,717
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Subject Text Typography
317 appearances · CI95 -42/42
1229
ELO
Style Traditional Art
396 appearances · CI95 -35/35
1229
ELO
Subject People: Groups Activities
639 appearances · CI95 -28/28
1200
ELO
Subject Fantasy Mythical
875 appearances · CI95 -24/24
1195
ELO
Subject Futuristic Sci-fi
872 appearances · CI95 -24/24
1190
ELO
Subject Commercial
411 appearances · CI95 -35/35
1182
ELO
Style Cartoon Illustration
541 appearances · CI95 -30/30
1180
ELO
Style General Photorealistic
2,352 appearances · CI95 -14/14
1172
ELO
Subject People: Portraits
716 appearances · CI95 -26/26
1172
ELO
Style Vintage Retro
316 appearances · CI95 -40/40
1172
ELO
Style Graphic Design Digital Rendering
1,918 appearances · CI95 -16/16
1172
ELO
Subject Ui/ux Design
238 appearances · CI95 -48/48
1164
ELO
Style Anime
501 appearances · CI95 -31/31
1150
ELO
Subject Physical Spaces
830 appearances · CI95 -24/24
1148
ELO
Subject Nature Landscapes
629 appearances · CI95 -27/27
1131
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: 'grok-imagine-image',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);