Routeway Logo
Back to Models
Recraft

Recraft V3

Available

Description

Recraft V3 is a state-of-the-art image generation model that is known for its high quality and prompt adherence.

At a Glance

Key pricing and model details available for this model.

Starting price

$0.04

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

per image

Resolution Pricing

Resolution-specific prices returned for this image model.

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

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

Overall ELO

1073

Rank

#51

Appearances

6,382

Category Breakdown

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

Subject Nature Landscapes

738 appearances · CI95 -26/26

1137

ELO

Style General Photorealistic

2,811 appearances · CI95 -13/13

1123

ELO

Style Traditional Art

367 appearances · CI95 -37/37

1121

ELO

Subject People: Groups Activities

625 appearances · CI95 -29/29

1104

ELO

Subject Physical Spaces

1,087 appearances · CI95 -22/22

1101

ELO

Style Vintage Retro

256 appearances · CI95 -46/46

1088

ELO

Subject Text Typography

282 appearances · CI95 -44/44

1078

ELO

Subject Commercial

379 appearances · CI95 -37/37

1074

ELO

Subject People: Portraits

517 appearances · CI95 -31/31

1063

ELO

Subject Futuristic Sci-fi

835 appearances · CI95 -24/24

1059

ELO

Style Graphic Design Digital Rendering

1,845 appearances · CI95 -16/16

1050

ELO

Subject Fantasy Mythical

1,018 appearances · CI95 -22/22

1038

ELO

Style Cartoon Illustration

512 appearances · CI95 -32/32

987

ELO

Subject Ui/ux Design

346 appearances · CI95 -40/40

969

ELO

Style Anime

419 appearances · CI95 -36/36

949

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

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