Routeway Logo
Back to Models
hidream provider icon

HiDream-I1 Fast

Available

Description

Fast image generation model. Optimized for speed while maintaining good quality.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0037

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1920x1080, 1080x1920, 768x1024, 1024x768

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0037

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.0037
1024x768$0.0037
1080x1920$0.0056
1920x1080$0.0056
768x1024$0.0037
auto$0.0037

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1920x1080
1080x1920
768x1024
1024x768

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

Overall ELO

1046

Rank

#68

Appearances

3,136

Category Breakdown

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

Style Traditional Art

209 appearances · CI95 -48/48

1117

ELO

Subject Fantasy Mythical

467 appearances · CI95 -32/32

1083

ELO

Subject Commercial

175 appearances · CI95 -53/53

1078

ELO

Subject People: Groups Activities

301 appearances · CI95 -41/41

1076

ELO

Style Cartoon Illustration

286 appearances · CI95 -41/41

1071

ELO

Style Anime

218 appearances · CI95 -48/48

1050

ELO

Subject Futuristic Sci-fi

417 appearances · CI95 -34/34

1041

ELO

Style General Photorealistic

1,246 appearances · CI95 -20/20

1038

ELO

Subject Physical Spaces

428 appearances · CI95 -34/34

1033

ELO

Style Graphic Design Digital Rendering

885 appearances · CI95 -23/23

1026

ELO

Subject People: Portraits

385 appearances · CI95 -36/36

1025

ELO

Subject Nature Landscapes

292 appearances · CI95 -42/42

997

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

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