Recraft V4 Pro
Description
Recraft V4 Pro is a professional text-to-image model for premium design and marketing output.
At a Glance
Key pricing and model details available for this model.
Starting price
$0.28
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.28
per image
Resolution Pricing
Resolution-specific prices returned for this image model.
| 1024x1024 | $0.28 |
| 1024x576 | $0.28 |
| 1024x768 | $0.28 |
| 576x1024 | $0.28 |
| 768x1024 | $0.28 |
| auto | $0.28 |
Image Details
Additional image-related pricing and format support.
| Pricing unit | per image |
| Supported sizes | 1024x1024 1024x768 1024x576 768x1024 576x1024 |
Feature Availability
Capabilities explicitly listed in the current payload.
Image
Available
Vision
Not listed
Function calling
Not listed
Reasoning
Not listed
Benchmark Summary
Overall image benchmark metrics currently available. CI95: -9/9
Overall ELO
1132
Rank
#26
Appearances
5,042
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
291 appearances · CI95 -41/41
1234
ELO
Subject People: Groups Activities
498 appearances · CI95 -32/32
1201
ELO
Style General Photorealistic
1,774 appearances · CI95 -16/16
1173
ELO
Subject Fantasy Mythical
664 appearances · CI95 -27/27
1162
ELO
Subject Commercial
320 appearances · CI95 -39/39
1139
ELO
Subject Nature Landscapes
421 appearances · CI95 -33/33
1129
ELO
Subject People: Portraits
510 appearances · CI95 -31/31
1126
ELO
Subject Physical Spaces
633 appearances · CI95 -27/27
1108
ELO
Style Cartoon Illustration
407 appearances · CI95 -35/35
1103
ELO
Subject Ui/ux Design
178 appearances · CI95 -54/54
1100
ELO
Style Vintage Retro
238 appearances · CI95 -46/46
1098
ELO
Subject Futuristic Sci-fi
618 appearances · CI95 -28/28
1095
ELO
Subject Text Typography
213 appearances · CI95 -48/48
1089
ELO
Style Anime
381 appearances · CI95 -36/36
1087
ELO
Style Graphic Design Digital Rendering
1,273 appearances · CI95 -19/19
1079
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-v4-pro',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);