Seedance 2.0 ลด 15% | สร้างใน Video Generator →

Recraft 20B

recraft-ai /

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

text-to-image
อินพุต
If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.

ว่าง

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

$0.022ต่อครั้ง·~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

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

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

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

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

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

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

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

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

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

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

โมเดลที่เกี่ยวข้อง

README

Recraft 20B — Design-Native Text-to-Image

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.

Why it stands out

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

Key capabilities

  • Advanced prompt understanding for detailed scenes, characters, and layouts.
  • Stable composition suitable for posters, covers, landing-page hero sections, and ad creatives.
  • Improved anatomy and perspective compared to many generic art models.
  • Good text–image integration so titles, slogans, and labels feel part of the design rather than pasted on.

Controls and parameters

  • prompt – natural-language description of the scene, style, layout, and embedded text you want.
  • aspect_ratio – choose from standard ratios (for example 1:1, 16:9, 9:16) to match feeds, banners, and story formats.
  • style – select from model-defined style families such as igital_illustration/grainto quickly shift aesthetic direction.
  • enable_base64_output – when enabled via API, returns the image as a base64 string instead of a URL (useful for certain integrations).

Outputs are delivered as high-quality raster images suitable for web, slides, and print-oriented workflows.

Pricing

Simple per-image billing:

  • $0.022 per generated image

How to use

  1. Enter a prompt describing subject, composition, design style, and any on-image text (titles, slogans, labels).
  2. Choose an aspect_ratio that matches the target placement (for example, 16:9 for banners, 9:16 for vertical stories).
  3. Select a style preset that fits your use case (illustration, grainy poster look, etc.).
  4. (Optional) Enable base64 output if your integration needs inline image data instead of URLs.
  5. Run the job and download or embed the generated image from the response or dashboard.

Pro tips

  • Be explicit about layout (e.g., “centered character with headline at the top, small subtitle below”) to leverage Recraft’s design-native strengths.
  • For text-heavy designs, spell out exact wording and, if needed, describe typography (for example, “bold sans-serif headline, clean minimal layout”).
  • Use aspect ratios that match the final placement so you avoid cropping away important elements.
  • When exploring brand visuals, keep the core prompt stable and tweak style or minor wording to generate consistent variations.
การเข้าถึง:เว็บไซต์นี้ใช้โมเดล AI ที่จัดหาโดยบุคคลที่สาม

Recraft 20b API — Quick start

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.

HTTP example
# 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].
Node.js example
// 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
Python example
# 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 output

Recraft 20b API — Frequently asked questions

What is the Recraft 20b API?

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

How do I call the Recraft 20b API?

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.

How much does Recraft 20b cost per run?

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.

What inputs does Recraft 20b accept?

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.

How long does Recraft 20b take to generate?

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.

Can I use Recraft 20b outputs commercially?

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.