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

$0.022za uruchomienie·~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. Start polling the result endpoint around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. On completed, read URLs from data.outputs. Examples for Recraft 20b below.
# Submit the prediction
curl --fail-with-body --connect-timeout 10 --max-time 60 \
-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
}'
# Wait at least 2 seconds, then poll. Safe GET requests may be retried.
curl --fail-with-body --connect-timeout 10 --max-time 30 \
--retry 4 --retry-all-errors --retry-delay 1 \
-X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# Start at 2 seconds and increase the interval for long-running tasks.
# Stop on completed, failed, cancelled, or timeout.// npm install wavespeed
const { Client } = require('wavespeed');
const apiKey = process.env.WAVESPEED_API_KEY;
if (!apiKey) throw new Error('Set WAVESPEED_API_KEY');
const client = new Client(apiKey);
try {
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
}, {
timeout: 3600,
pollInterval: 2.0,
});
console.log(result.outputs);
} catch (error) {
console.error('Generation failed:', error);
process.exitCode = 1;
}# pip install wavespeed
import os
from wavespeed import Client
client = Client(api_key=os.environ["WAVESPEED_API_KEY"])
try:
output = 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
},
timeout=3600.0,
poll_interval=2.0,
)
print(output["outputs"])
except Exception as error:
raise SystemExit(f"Generation failed: {error}") from errorRecraft 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 result endpoint starting around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. The playground generates production-oriented Python, JavaScript, and cURL examples with timeouts, transient-error handling, and safe GET retries. 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.