Routeway Logo
Back to Models
Ideogram

Ideogram V2 Turbo

Available

Description

A fast 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.09

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.09

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.09
1024x768$0.09
1344x640$0.09
1536x512$0.09
512x1536$0.09
640x1344$0.09
768x1024$0.09
auto$0.09

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
768x1024
1024x768
640x1344
1344x640
512x1536
1536x512

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

Overall ELO

1043

Rank

#70

Appearances

7,077

Category Breakdown

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

Subject People: Groups Activities

608 appearances · CI95 -30/30

1083

ELO

Subject Futuristic Sci-fi

1,033 appearances · CI95 -22/22

1067

ELO

Style Traditional Art

353 appearances · CI95 -37/37

1061

ELO

Style General Photorealistic

3,133 appearances · CI95 -12/12

1059

ELO

Subject Nature Landscapes

846 appearances · CI95 -24/24

1059

ELO

Subject Commercial

421 appearances · CI95 -36/36

1052

ELO

Style Graphic Design Digital Rendering

2,151 appearances · CI95 -15/15

1048

ELO

Subject Physical Spaces

1,206 appearances · CI95 -20/20

1040

ELO

Subject Ui/ux Design

410 appearances · CI95 -38/38

1038

ELO

Subject Text Typography

362 appearances · CI95 -39/39

1037

ELO

Style Vintage Retro

238 appearances · CI95 -47/47

1034

ELO

Subject Fantasy Mythical

1,063 appearances · CI95 -22/22

1019

ELO

Style Cartoon Illustration

522 appearances · CI95 -32/32

1017

ELO

Subject People: Portraits

446 appearances · CI95 -34/34

975

ELO

Style Anime

479 appearances · CI95 -33/33

961

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

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