Recraft AI 20b delivers affordable, fast image generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.022per run·~45 / $1

Cyberpunk girl with neon pink hair and glowing implants walking through rainy Tokyo streets, reflections, neon signs, 4K hyper-detail, Blade Runner vibes

A young woman in a white blouse and denim skirt standing in a sunlit kitchen, soft morning light

Old man with a long grey beard reading a book under a streetlamp at night, cinematic lighting, photorealistic, vintage atmosphere, 85mm lens

Android boy sitting in a futuristic subway, LED lights flickering, chrome skin, dystopian mood, cyberpunk fashion

Baroque painting of a knight in ornate armor holding a rose, dark velvet backdrop, Rembrandt lighting, regal expression

Woman with a galaxy for hair, floating in space surrounded by glowing jellyfish, surreal dreamscape, vivid colors, concept art

Modern African woman in bold patterned Ankara dress, standing in a desert with a sunset backdrop, fashion editorial style, rich textures

Street style portrait of a Gen Z fashion influencer in oversized jacket and sneakers, urban background, natural light, detailed facial expression and accessories

High fashion model posing in a minimalist studio, dramatic shadow play, sharp cheekbones, avant-garde makeup, Vogue editorial style, high resolution

An astronaut floats weightlessly outside a space station, Earth spinning slowly below, camera rotates to create a dizzying zero-gravity effect, ambient sci-fi tone
Recraft 20B is a large-scale text-to-image model that “thinks in design language.” It is tuned for layouts, typography, brand-safe compositions, and clean text rendering, making it ideal for social graphics, ads, presentations, and product visuals where design quality matters as much as realism.
Design-first image generation Strong understanding of layout, hierarchy, and composition for poster-style images, thumbnails, and marketing assets.
Sharp, readable text on images Generates high-quality embedded text—from short labels to longer headlines—directly inside the image.
Rich style system Curated style presets (for example, igital_illustration/grain make it easy to switch between illustration, painterly, and graphic styles without rewriting prompts.
Brand and identity friendly Handles logos, icons, and UI-like designs with improved anatomy, alignment, and visual consistency.
Vector-aware design Originates from a system that supports both raster and vector workflows, making it particularly strong for flat design, icons, and graphic illustration.
Outputs are delivered as high-quality raster images suitable for web, slides, and print-oriented workflows.
Simple per-image billing:
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/recraft-ai/recraft-20b with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Recraft 20b below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/recraft-ai/recraft-20b" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"style": "realistic_image/b_and_w",
"enable_base64_output": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("recraft-ai/recraft-20b", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"style": "realistic_image/b_and_w",
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"recraft-ai/recraft-20b",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"style": "realistic_image/b_and_w",
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputRecraft 20b is a Recraft model for image generation, exposed as a REST API on WaveSpeedAI. Recraft AI 20b delivers affordable, fast image generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/recraft-ai/recraft-ai-recraft-20b.
Recraft 20b starts at $0.022 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `aspect_ratio`, `enable_base64_output`, `style`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/recraft-ai/recraft-ai-recraft-20b.
Average end-to-end generation time on WaveSpeedAI is around 5 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (Recraft). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.