Recraft V4
Description
Recraft V4 is a text-to-image model designed for professional design and marketing use cases.
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 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
1121
Rank
#31
Appearances
5,132
Category Breakdown
Available per-category ELO results from the current benchmark payload.
Style Traditional Art
319 appearances · CI95 -39/39
1237
ELO
Subject Fantasy Mythical
686 appearances · CI95 -26/26
1174
ELO
Style General Photorealistic
1,764 appearances · CI95 -16/16
1154
ELO
Subject Commercial
297 appearances · CI95 -40/40
1142
ELO
Subject People: Groups Activities
513 appearances · CI95 -31/31
1136
ELO
Subject Futuristic Sci-fi
614 appearances · CI95 -28/28
1123
ELO
Subject Nature Landscapes
432 appearances · CI95 -33/33
1117
ELO
Style Vintage Retro
241 appearances · CI95 -45/45
1116
ELO
Subject Physical Spaces
634 appearances · CI95 -27/27
1111
ELO
Subject Ui/ux Design
173 appearances · CI95 -55/55
1111
ELO
Subject People: Portraits
549 appearances · CI95 -30/30
1109
ELO
Subject Text Typography
245 appearances · CI95 -45/45
1099
ELO
Style Cartoon Illustration
374 appearances · CI95 -36/36
1097
ELO
Style Graphic Design Digital Rendering
1,380 appearances · CI95 -18/18
1093
ELO
Style Anime
360 appearances · CI95 -37/37
1053
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',
prompt: 'A futuristic city skyline at sunset',
size: '1024x1024',
})
});
const imageData = await response.json();
console.log(imageData);