Skip to content

Provider Recraft

h-avoyan edited this page Jun 18, 2026 · 4 revisions

Recraft

Mode: image · Models: 20

Vendor: Recraft · Official API docs: recraft.ai/docs

Recraft is a design-focused image model with strong text rendering, long prompts (up to 10K characters), and native vector (SVG) output. The V4.1 family spans raster and Vector variants, each in standard, Pro, and Utility tiers, alongside dedicated utility workflows for vectorize, upscale, background replacement, and Explore.

Models

id Name Input type
recraftv4_1 Recraft V4.1 t2i
recraftv4_1_pro Recraft V4.1 Pro t2i
recraftv4_1_utility Recraft V4.1 Utility t2i
recraftv4_1_utility_pro Recraft V4.1 Utility Pro t2i
recraftv4_1_vector Recraft V4.1 Vector t2i
recraftv4_1_pro_vector Recraft V4.1 Pro Vector t2i
recraftv4_1_utility_vector Recraft V4.1 Utility Vector t2i
recraftv4_1_utility_pro_vector Recraft V4.1 Utility Pro Vector t2i
recraftv4 Recraft V4 t2i
recraftv4_pro Recraft V4 Pro t2i
recraftv4_vector Recraft V4 Vector t2i
recraftv4_pro_vector Recraft V4 Pro Vector t2i
recraftv3 Recraft V3 t2i
recraftv3_vector Recraft V3 Vector t2i
recraft-explore Recraft Explore t2i
recraft-explore-similar Recraft Explore Similar i2i
recraft-vectorize Recraft Vectorize i2i
recraft-creative-upscale Recraft Creative Upscale i2i
recraft-crisp-upscale Recraft Crisp Upscale i2i
recraftv3-replace-bg Recraft Replace Background i2i

CLI

# text-to-image with the V4.1 flagship
gen-ai generate -m recraftv4_1 \
  -p "a vintage travel poster of the Swiss Alps, bold typography, flat color" \
  --ar 3:4 -n 2

# native SVG vector output
gen-ai generate -m recraftv4_1_vector \
  -p "minimal line-art fox logo, single weight, two colors" --ar 1:1

# convert a raster image to SVG
gen-ai generate -m recraft-vectorize -i ./logo.png

MCP

{ "name": "picsart_generate",
  "arguments": {
    "model": "recraftv4_1",
    "prompt": "a vintage travel poster of the Swiss Alps, bold typography, flat color",
    "aspectRatio": "3:4",
    "count": 2
  } }
{ "name": "picsart_vectorize",
  "arguments": {
    "model": "recraft-vectorize",
    "imageUrls": ["https://example.com/logo.png"]
  } }

Parameters — recraftv4_1

Param CLI flag Type Values
prompt -p text required (max 10000 chars)
aspectRatio --ar enum 1:1 · 4:3 · 3:4 · 3:2 · 2:3 · 16:9 · 9:16 · 2:1 · 1:2 (default 1:1)
count -n enum 1 · 2 · 4 · 6 (default 1)

Source: gen-ai models info recraftv4_1 --json. The Pro, Utility, and Vector V4.1 variants share this surface; the recraft-vectorize / *-upscale / replace-bg utility models take an image input (-i) instead.

Pricing

gen-ai pricing recraftv4_1 -n 2

Cost scales with the number of images (count) and the model tier — Pro variants cost more than standard, and vector output is priced separately.

Clone this wiki locally