Ideogram V2
Description
An excellent image model with state of the art inpainting, prompt comprehension and especially text rendering.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.15
per image
Hallucination rate
0%
Supported sizes
1024x1024, 768x1024, 1024x768, 640x1344, 1344x640, 512x1536, 1536x512
Image Pricing
Image generation pricing currently exposed by the models API.
Starting price
$0.15
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1024 | $0.15 |
| 1024x768 | $0.15 |
| 1344x640 | $0.15 |
| 1536x512 | $0.15 |
| 512x1536 | $0.15 |
| 640x1344 | $0.15 |
| 768x1024 | $0.15 |
| auto | $0.15 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1024x1024 768x1024 1024x768 640x1344 1344x640 512x1536 1536x512 |
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
1057
Rank
#64
Appearances
8,113
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
382 appearances · CI95 -36/36
1148
ELO
Subject Nature Landscapes
944 appearances · CI95 -23/23
1129
ELO
Subject People: Groups Activities
725 appearances · CI95 -27/27
1096
ELO
Style General Photorealistic
3,595 appearances · CI95 -12/12
1093
ELO
Style Vintage Retro
336 appearances · CI95 -40/40
1086
ELO
Subject Text Typography
435 appearances · CI95 -36/36
1069
ELO
Subject People: Portraits
512 appearances · CI95 -32/32
1059
ELO
Subject Physical Spaces
1,523 appearances · CI95 -18/18
1056
ELO
Subject Fantasy Mythical
1,177 appearances · CI95 -21/21
1045
ELO
Subject Futuristic Sci-fi
1,074 appearances · CI95 -22/22
1040
ELO
Style Cartoon Illustration
553 appearances · CI95 -31/31
1024
ELO
Subject Commercial
487 appearances · CI95 -33/33
1023
ELO
Style Graphic Design Digital Rendering
2,505 appearances · CI95 -14/14
1013
ELO
Subject Ui/ux Design
518 appearances · CI95 -33/33
988
ELO
Style Anime
513 appearances · CI95 -32/32
981
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: 'ideogram-v2',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);