Routeway Logo
Back to Models
Ideogram

Ideogram V3 Quality

Available

Description

Ideogram V3 (Quality) offers the highest fidelity images of the Ideogram series and poster-grade text rendering capabilities.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.10

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

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

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

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

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

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