---
title: Recraft V4 Pro Vector | Runware Docs
url: https://runware.ai/docs/models/recraft-v4-pro-vector
description: Advanced vectorization with enhanced control for professional workflows
---
# Recraft V4 Pro Vector

Recraft V4 Pro Vector is an advanced vectorization model optimized for high-precision design production and brand asset creation. It generates scalable vectors with nuanced control over line quality, geometry simplification, fills, and color regions. The model is tailored for designers and creative teams seeking production-ready vector outputs for illustration, advertising, UI assets, and print layouts.

- **ID**: `recraft:v4-pro@vector`
- **Status**: api-only
- **Creator**: Recraft
- **Release Date**: February 17, 2026
- **Capabilities**: Text to Image, Vectorize

## Pricing

- **All resolutions**: `$0.3`

## Compatibility & Validation

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `2K (1:1)` | `2048x2048` |
| `2K (2:1)` | `3072x1536` |
| `2K (1:2)` | `1536x3072` |
| `2K (3:2)` | `2560x1664` |
| `2K (2:3)` | `1664x2560` |
| `2K (4:3)` | `2432x1792` |
| `2K (3:4)` | `1792x2432` |
| `2K (5:4)` | `2304x1792` |
| `2K (4:5)` | `1792x2304` |
| `2K (6:10)` | `1664x2688` |
| `2K (14:10)` | `2560x1792` |
| `2K (10:14)` | `1792x2560` |
| `2K (16:9)` | `2688x1536` |
| `2K (9:16)` | `1536x2688` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/recraft-v4-pro-vector#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `vectorize`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/recraft-v4-pro-vector#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/recraft-v4-pro-vector#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Image output type.

**Allowed values**: `URL` `base64Data` `dataURI`

### [outputFormat](https://runware.ai/docs/models/recraft-v4-pro-vector#request-outputformat)

- **Type**: `string`
- **Default**: `SVG`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`SVG\`: Scalable Vector Graphics.

**Allowed values**: `SVG`

### [webhookURL](https://runware.ai/docs/models/recraft-v4-pro-vector#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/recraft-v4-pro-vector#request-deliverymethod)

- **Type**: `string`
- **Default**: `sync`

Determines how the API delivers task results.

**Allowed values**:

- `sync` Returns complete results directly in the API response.
- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/recraft-v4-pro-vector#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [ttl](https://runware.ai/docs/models/recraft-v4-pro-vector#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/recraft-v4-pro-vector#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

**Inputs**

Input resources for the task (images, audio, etc). These must be nested inside the \`inputs\` object.

### [image](https://runware.ai/docs/models/recraft-v4-pro-vector#request-inputs-image)

- **Path**: `inputs.image`
- **Type**: `string`
- **Required**: true

Image input (UUID, URL, Data URI, or Base64).

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/recraft-v4-pro-vector#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `recraft:v4-pro@vector`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [positivePrompt](https://runware.ai/docs/models/recraft-v4-pro-vector#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `1`
- **Max**: `10000`

Text prompt describing elements to include in the generated output.

**Learn more** (2 resources):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [width](https://runware.ai/docs/models/recraft-v4-pro-vector#request-width)

- **Type**: `integer`
- **Paired with**: height

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [height](https://runware.ai/docs/models/recraft-v4-pro-vector#request-height)

- **Type**: `integer`
- **Paired with**: width

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

**Provider Settings**

Parameters specific to this model provider. These must be nested inside the \`providerSettings.recraft\` object.

### [backgroundColor](https://runware.ai/docs/models/recraft-v4-pro-vector#request-providersettings-recraft-backgroundcolor)

- **Path**: `providerSettings.recraft.backgroundColor`
- **Type**: `object (1 property)`

Background color used for the generation.

#### [rgb](https://runware.ai/docs/models/recraft-v4-pro-vector#request-providersettings-recraft-backgroundcolor-rgb)

- **Path**: `providerSettings.recraft.backgroundColor.rgb`
- **Type**: `array of integers`
- **Required**: true
- **Min**: `0`
- **Max**: `255`

Color as `[red, green, blue]` array.

### [colors](https://runware.ai/docs/models/recraft-v4-pro-vector#request-providersettings-recraft-colors)

- **Path**: `providerSettings.recraft.colors`
- **Type**: `array of objects (1 property)`

An array of colors defining the color palette to use in the generation.

#### [rgb](https://runware.ai/docs/models/recraft-v4-pro-vector#request-providersettings-recraft-colors-rgb)

- **Path**: `providerSettings.recraft.colors.rgb`
- **Type**: `array of integers`
- **Required**: true
- **Min**: `0`
- **Max**: `255`

Color as `[red, green, blue]` array.

## Response Parameters

### [taskType](https://runware.ai/docs/models/recraft-v4-pro-vector#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `vectorize`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/recraft-v4-pro-vector#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [imageUUID](https://runware.ai/docs/models/recraft-v4-pro-vector#response-imageuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output image.

### [imageURL](https://runware.ai/docs/models/recraft-v4-pro-vector#response-imageurl)

- **Type**: `string`
- **Format**: `URI`

URL of the output image.

### [imageBase64Data](https://runware.ai/docs/models/recraft-v4-pro-vector#response-imagebase64data)

- **Type**: `string`

Base64-encoded image data.

### [imageDataURI](https://runware.ai/docs/models/recraft-v4-pro-vector#response-imagedatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output image.

### [cost](https://runware.ai/docs/models/recraft-v4-pro-vector#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Midcentury Tea Tin Mascot (Text to Image)

![Midcentury Tea Tin Mascot](https://assets.runware.ai/examples/recraft-v4-pro-vector/0366e7cf-6338-444d-9e31-3b035184c82f.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "6c1a7e42-2c3e-4a40-9893-3f71518591f0",
  "model": "recraft:v4-pro@vector",
  "positivePrompt": "A polished vector-style packaging illustration for a premium tea brand: a cheerful red panda mascot balancing on an ornate tea tin, surrounded by stylized citrus slices, curling steam motifs, tea leaves, and geometric floral accents. Midcentury-inspired commercial design, bold clean outlines, flat layered shapes, elegant negative space, precise symmetry, scalable logo-friendly composition, highly legible silhouette, decorative label elements, refined print-ready vector aesthetic, no photorealism, no texture noise, no messy details.",
  "width": 2048,
  "height": 2048,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            216,
            92,
            54
          ]
        },
        {
          "rgb": [
            44,
            98,
            74
          ]
        },
        {
          "rgb": [
            238,
            196,
            92
          ]
        },
        {
          "rgb": [
            34,
            44,
            60
          ]
        },
        {
          "rgb": [
            248,
            240,
            226
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          248,
          240,
          226
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "6c1a7e42-2c3e-4a40-9893-3f71518591f0",
  "imageUUID": "daba6f94-759d-4009-954d-e345a86416ab",
  "imageURL": "https://im.runware.ai/image/os/a25d05/ws/2/ii/daba6f94-759d-4009-954d-e345a86416ab.svg",
  "cost": 0.3
}
```

---

### Memphis Koi Badge System (Text to Image)

![Memphis Koi Badge System](https://assets.runware.ai/examples/recraft-v4-pro-vector/64d85be4-7d6d-4d1c-8384-cb4344f48de5.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "f4eaa860-fcbc-422c-b0e0-59be2abf4519",
  "model": "recraft:v4-pro@vector",
  "positivePrompt": "Create a clean scalable vector illustration for a premium stationery brand identity. Central subject: a stylized koi fish formed from bold geometric shapes, concentric fins, checker accents, dots, arcs, and asymmetric confetti motifs. Design language: contemporary Memphis-inspired vector branding, polished and minimal, balanced negative space, precise bezier-like curves, uniform line discipline, flat color blocking, no textures, no gradients, no photographic detail. Composition should feel like a versatile badge or packaging mark, centered with decorative secondary elements orbiting the fish in a tidy radial arrangement. Mood: upbeat, clever, design-forward, collectible. Emphasize crisp edges, simplified geometry, excellent silhouette readability, and print-friendly separation of color regions.",
  "width": 2048,
  "height": 2048,
  "providerSettings": {
    "recraft": {
      "backgroundColor": {
        "rgb": [
          248,
          244,
          236
        ]
      },
      "colors": [
        {
          "rgb": [
            232,
            94,
            58
          ]
        },
        {
          "rgb": [
            34,
            87,
            122
          ]
        },
        {
          "rgb": [
            245,
            196,
            67
          ]
        },
        {
          "rgb": [
            28,
            33,
            41
          ]
        },
        {
          "rgb": [
            116,
            185,
            160
          ]
        }
      ]
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "f4eaa860-fcbc-422c-b0e0-59be2abf4519",
  "imageUUID": "99ffaf99-dd69-439f-9c4e-d8047e67211f",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/2/ii/99ffaf99-dd69-439f-9c4e-d8047e67211f.svg",
  "cost": 0.3
}
```

---

### Art Deco Citrus Emblem (Text to Image)

![Art Deco Citrus Emblem](https://assets.runware.ai/examples/recraft-v4-pro-vector/e70d946d-9bd0-4788-854e-0456f5a4f484.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "f9b43848-50b8-41bb-a001-2bf7d0bef0cd",
  "model": "recraft:v4-pro@vector",
  "positivePrompt": "A refined vector emblem for a fictional sparkling citrus soda brand: a stylized sliced orange merged with a radiant sunburst, elegant Art Deco geometry, symmetrical badge composition, bold flat shapes, precise contour lines, minimal shading, premium packaging graphic, scalable logo-like illustration, decorative border details, clean negative space, sophisticated retro-futurist flair, highly polished commercial design, centered composition, no text, no mockup, no photorealism",
  "width": 2048,
  "height": 2048,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            240,
            122,
            32
          ]
        },
        {
          "rgb": [
            255,
            196,
            60
          ]
        },
        {
          "rgb": [
            24,
            88,
            68
          ]
        },
        {
          "rgb": [
            12,
            34,
            52
          ]
        },
        {
          "rgb": [
            248,
            241,
            227
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          248,
          241,
          227
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "f9b43848-50b8-41bb-a001-2bf7d0bef0cd",
  "imageUUID": "bc5bdc5d-c86b-4a3c-b700-e931051d4251",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/2/ii/bc5bdc5d-c86b-4a3c-b700-e931051d4251.svg",
  "cost": 0.3
}
```

---

### Playful Orchard Harvest Icons (Text to Image)

![Playful Orchard Harvest Icons](https://assets.runware.ai/examples/recraft-v4-pro-vector/5f5f3342-f6be-4d15-9e77-f993f3b3d21a.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "85343ebb-9fde-43d2-bb21-70752a172ac3",
  "model": "recraft:v4-pro@vector",
  "positivePrompt": "A polished vector illustration sheet featuring a whimsical orchard harvest theme: sliced pear, fig, plum, apricot, wicker basket, garden shears, striped jam jar label, leaf clusters, small blossoms, and curling ribbons arranged in a balanced modular composition. Flat fills, crisp contours, simplified geometry, subtle layered shapes, strong negative space, boutique grocery branding aesthetic, cheerful and refined, highly legible scalable design, premium packaging graphic style, no photorealism, no texture noise, clean production-ready vector look.",
  "width": 2048,
  "height": 2048,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            92,
            126,
            79
          ]
        },
        {
          "rgb": [
            214,
            167,
            92
          ]
        },
        {
          "rgb": [
            137,
            70,
            86
          ]
        },
        {
          "rgb": [
            242,
            198,
            170
          ]
        },
        {
          "rgb": [
            74,
            54,
            49
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          248,
          243,
          232
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "85343ebb-9fde-43d2-bb21-70752a172ac3",
  "imageUUID": "cd31a1f6-8db4-4de3-b18e-3dfc0a7b3793",
  "imageURL": "https://im.runware.ai/image/os/a09d21/ws/2/ii/cd31a1f6-8db4-4de3-b18e-3dfc0a7b3793.svg",
  "cost": 0.3
}
```