Seedance 2.0 15% OFF | Create in Video Generator →

Recraft V3 SVG

recraft-ai /

Recraft V3 SVG is a SOTA text-to-image model that generates SVG/vector artwork in diverse styles and handles long text prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

text-to-image
Input
If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.

Idle

$0.08per run·~12 / $1

ExamplesView all

Renaissance-style portrait of a noblewoman with an intricate lace dress, soft oil painting texture, chiaroscuro lighting, 1600s style background

Young man with curly hair reading a book in a vintage library, warm sunlight casting shadows

A woman in a dress standing beside a rainy window

Close-up portrait of a freckled teenage girl with messy hair and intense eyes

Elven princess in a glowing forest, wearing a crown of leaves, long flowing hair, bioluminescent fireflies surrounding her

A young woman in a white blouse and skirt standing in a sunlit kitchen

Old man with a long grey beard reading a book under a streetlamp at night

Elven warrior queen in armor walking through an enchanted forest, glowing runes on trees

Sorcerer casting a fire spell in ancient ruins, fiery light illuminating face, swirling energy around hands

A full-body candid shot of a young man in his early 20s walking down a sun-drenched street in Shinjuku, Tokyo. He is wearing a stylish oversized beige hoodie, black cargo pants, and limited-edition sneakers. He is looking off-camera with a thoughtful expression, with headphones around his neck.

Related Models

README

Recraft V3 SVG

Generate premium scalable vector graphics (SVG) from text descriptions with Recraft V3. This advanced model creates elegant, production-ready vector illustrations in artistic styles like engraving, line art, and linocut — perfect for logos, fine art prints, and sophisticated design work.

Looking for more style variety? Try Recraft 20B SVG for an expanded style library including icons and kawaii.

Why It Looks Great

  • True vector output: Generates SVG files that scale to any size without quality loss.
  • Artistic styles: Specialized in elegant, refined illustration styles.
  • Premium quality: V3 model delivers superior detail and path optimization.
  • Production-ready: Clean vectors for immediate professional use.
  • Prompt Enhancer: Built-in tool to refine your descriptions automatically.
  • Safety Checker: Optional content filtering for appropriate output.

Parameters

ParameterRequiredDescription
promptYesText description of the vector graphic you want to generate.
aspect_ratioNoOutput format: 1:1, 16:9, 9:16, 4:3, 3:4, etc. Default: 1:1.
styleNoVector style preset (see Style Guide below).
Enable Safety CheckerNoToggle content safety filtering.

How to Use

  1. Write your prompt — describe the vector graphic you want to create.
  2. Use Prompt Enhancer (optional) — click to automatically enrich your description.
  3. Set aspect ratio — choose the format that fits your use case.
  4. Choose style — select from the artistic style library.
  5. Run — click the button to generate.
  6. Download — save your SVG file.

Pricing

Flat rate per image generation.

OutputCost
Per SVG$0.08

Style Guide

StyleDescriptionBest For
engravingClassic engraving line workVintage designs, certificates, premium branding
line_artClean line-based illustrationMinimalist art, elegant logos, book illustrations
line_circuitCircuit board aestheticTech themes, electronics, futuristic designs
linocutBlock print woodcut styleArtistic prints, editorial, craft aesthetics

Best Use Cases

  • Fine Art Prints — Create elegant engravings and linocuts for art reproduction.
  • Premium Branding — Generate sophisticated logos and brand marks.
  • Book Illustration — Produce clean line art for publishing.
  • Certificate Design — Classic engraving style for official documents.
  • Editorial Graphics — Artistic illustrations for magazines and articles.
  • Vintage Aesthetics — Recreate classic illustration techniques in vector format.

Example Prompts

  • "Renaissance-style portrait of a noblewoman with an intricate lace dress, soft oil painting texture, chiaroscuro lighting, 1600s style background"
  • "detailed engraving of a majestic lion head, Victorian style, fine crosshatching"
  • "minimalist line art portrait of a woman in profile, single continuous line, elegant simplicity"
  • "linocut illustration of a forest scene, bold shapes, nature theme, folk art style"
  • "circuit board pattern forming a human brain, tech aesthetic, detailed pathways"

Model Comparison

ModelCostStylesBest For
Recraft V3 SVG$0.08Artistic (engraving, line_art, etc.)Premium, artistic vectors
Recraft 20B SVG$0.044Extensive (icons, kawaii, flat, etc.)Diverse style needs, icons

Pro Tips for Best Results

  • Use engraving style for vintage, premium, and certificate-style designs.
  • Line art works best for minimalist, elegant illustrations.
  • Linocut creates bold, artistic prints with a handcrafted feel.
  • Include era or style references: "Renaissance", "Victorian", "1600s style".
  • Describe lighting and texture for more refined output.
  • SVG output can be edited in Illustrator, Figma, or Inkscape.

Notes

  • Output is true SVG format — infinitely scalable vector graphics.
  • V3 produces more refined, premium-quality vectors than previous versions.
  • SVG files can be further edited in any vector graphics software.
  • Processing time may vary based on complexity.
Accessibility:This website uses AI models provided by third parties.

Recraft v3 Svg API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/recraft-ai/recraft-v3-svg 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 v3 Svg below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/recraft-ai/recraft-v3-svg" \
  -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": "engraving",
    "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-v3-svg", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "aspect_ratio": "1:1",
        "style": "engraving",
        "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-v3-svg",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "aspect_ratio": "1:1",
    "style": "engraving",
    "enable_base64_output": false
}
)

print(output["outputs"][0])  # → URL of the generated output

Recraft v3 Svg API — Frequently asked questions

What is the Recraft v3 Svg API?

Recraft v3 Svg is a Recraft model for image generation, exposed as a REST API on WaveSpeedAI. Recraft V3 SVG is a SOTA text-to-image model that generates SVG/vector artwork in diverse styles and handles long text prompts. 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 v3 Svg 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-v3-svg.

How much does Recraft v3 Svg cost per run?

Recraft v3 Svg starts at $0.080 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 v3 Svg 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-v3-svg.

How long does Recraft v3 Svg take to generate?

Average end-to-end generation time on WaveSpeedAI is around 12 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 v3 Svg 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.