Routeway Logo
Back to Models
playground provider icon

Playground V2.5

Available

Description

Playground V2.5 outperforms SDXL in many user tests. Suitable for a broad range of images.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.0094

per image

Hallucination rate

0%

Supported sizes

1024x1024, 1024x768, 1024x576, 768x1024, 576x1024

Image Pricing

Image generation pricing currently exposed by the models API.

Starting price

$0.0094

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

1024x1024$0.0094
1024x576$0.0094
1024x768$0.0094
576x1024$0.0094
768x1024$0.0094
auto$0.0094

Image Details

Additional image-related pricing and format support.

Pricing unitper image
Supported sizes
1024x1024
1024x768
1024x576
768x1024
576x1024

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

Overall ELO

970

Rank

#97

Appearances

12,022

Category Breakdown

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

Style Traditional Art

618 appearances · CI95 -28/28

1089

ELO

Subject Nature Landscapes

1,513 appearances · CI95 -18/18

1041

ELO

Subject Physical Spaces

2,383 appearances · CI95 -14/14

1011

ELO

Subject Fantasy Mythical

1,917 appearances · CI95 -16/16

1005

ELO

Style General Photorealistic

5,427 appearances · CI95 -9/9

996

ELO

Subject Futuristic Sci-fi

1,662 appearances · CI95 -17/17

991

ELO

Subject People: Portraits

557 appearances · CI95 -31/31

987

ELO

Style Cartoon Illustration

859 appearances · CI95 -25/25

973

ELO

Style Anime

778 appearances · CI95 -26/26

964

ELO

Subject People: Groups Activities

1,039 appearances · CI95 -23/23

938

ELO

Style Graphic Design Digital Rendering

3,709 appearances · CI95 -11/11

926

ELO

Subject Commercial

715 appearances · CI95 -27/27

908

ELO

Style Vintage Retro

464 appearances · CI95 -34/34

873

ELO

Subject Text Typography

484 appearances · CI95 -33/33

853

ELO

Subject Ui/ux Design

903 appearances · CI95 -24/24

827

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

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