---
title: Recraft V4 Vector | Runware Docs
url: https://runware.ai/docs/models/recraft-v4-vector
description: Professional vectorization and design-aware image conversion
---
# Recraft V4 Vector

Recraft V4 Vector is a professional vectorization model that transforms raster images into high-quality scalable vector art. Built for design and marketing workflows, it preserves structural fidelity, contour accuracy, and visual style while producing clean paths and optimized shapes suitable for branding, illustration, and layout production.

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

## Pricing

- **All resolutions**: `$0.08`

## Compatibility & Validation

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `1K (1:1)` | `1024x1024` |
| `1K (2:1)` | `1536x768` |
| `1K (1:2)` | `768x1536` |
| `1K (3:2)` | `1280x832` |
| `1K (2:3)` | `832x1280` |
| `1K (4:3)` | `1216x896` |
| `1K (3:4)` | `896x1216` |
| `1K (5:4)` | `1152x896` |
| `1K (4:5)` | `896x1152` |
| `1K (6:10)` | `832x1344` |
| `1K (14:10)` | `1280x896` |
| `1K (10:14)` | `896x1280` |
| `1K (16:9)` | `1344x768` |
| `1K (9:16)` | `768x1344` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/recraft-v4-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-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-vector#request-outputtype)

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

Image output type.

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

### [outputFormat](https://runware.ai/docs/models/recraft-v4-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-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-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-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-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-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-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-vector#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `recraft:v4@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-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-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-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-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-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-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-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-vector#response-tasktype)

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

Type of the task.

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

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

UUID of the task.

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

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

UUID of the output image.

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

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

URL of the output image.

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

- **Type**: `string`

Base64-encoded image data.

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

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

Data URI of the output image.

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

- **Type**: `float`

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

## Examples

### Midnight Botanical Tea Emblems (Text to Image)

![Midnight Botanical Tea Emblems](https://assets.runware.ai/examples/recraft-v4-vector/5b0bdb0d-53f3-4835-8612-da3752842859.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "650c5f43-2a43-4fd3-bf08-57d6fa14105d",
  "model": "recraft:v4@vector",
  "positivePrompt": "A refined collection of herbal tea brand emblems arranged as a polished design board, featuring moonflower, bergamot slices, sage leaves, star anise, and curling steam motifs in elegant geometric vector art. Flat scalable illustration style, precise contours, balanced negative space, premium packaging aesthetic, ornamental badges, labels, icons, and seal marks, sophisticated nighttime mood, minimal shading, sharp edges, clean line hierarchy, highly legible composition, decorative yet professional, suitable for branding and print.",
  "width": 1024,
  "height": 1024,
  "providerSettings": {
    "recraft": {
      "backgroundColor": {
        "rgb": [
          244,
          240,
          232
        ]
      },
      "colors": [
        {
          "rgb": [
            21,
            43,
            60
          ]
        },
        {
          "rgb": [
            74,
            122,
            89
          ]
        },
        {
          "rgb": [
            196,
            154,
            92
          ]
        },
        {
          "rgb": [
            138,
            84,
            74
          ]
        },
        {
          "rgb": [
            239,
            226,
            201
          ]
        }
      ]
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "650c5f43-2a43-4fd3-bf08-57d6fa14105d",
  "imageUUID": "d58563dc-3c4d-4dba-8ccd-0b5a09a62b11",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/2/ii/d58563dc-3c4d-4dba-8ccd-0b5a09a62b11.svg",
  "cost": 0.08
}
```

---

### Geometric Koi Festival Banner (Text to Image)

![Geometric Koi Festival Banner](https://assets.runware.ai/examples/recraft-v4-vector/ff820d82-b254-4401-a329-13522d6dbfbf.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "03f577a3-cf09-4278-8807-76676a72ddc3",
  "model": "recraft:v4@vector",
  "positivePrompt": "Wide vector illustration of a festive koi-themed celebration graphic, two stylized koi fish circling around floating paper streamers and abstract wave motifs, decorative floral medallions, rhythmic geometric clouds, elegant negative space, flat scalable shapes, precise contours, high structural clarity, premium editorial design aesthetic, contemporary Japanese-inspired graphic language, balanced symmetry with slight asymmetrical accents, bold yet refined composition, clean layered forms, minimal shading, no text, no watermark",
  "width": 1536,
  "height": 768,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            230,
            57,
            70
          ]
        },
        {
          "rgb": [
            29,
            53,
            87
          ]
        },
        {
          "rgb": [
            241,
            250,
            238
          ]
        },
        {
          "rgb": [
            244,
            162,
            97
          ]
        },
        {
          "rgb": [
            42,
            157,
            143
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          248,
          244,
          236
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "03f577a3-cf09-4278-8807-76676a72ddc3",
  "imageUUID": "7dc2fd0d-a23e-4e5b-abe4-32aec95a5f03",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/2/ii/7dc2fd0d-a23e-4e5b-abe4-32aec95a5f03.svg",
  "cost": 0.08
}
```

---

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

![Art Deco Citrus Collage](https://assets.runware.ai/examples/recraft-v4-vector/9ccb7674-f031-4cf1-af72-ef1c11201ac8.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "9144d55c-3086-40ca-a77c-c60937d602a9",
  "model": "recraft:v4@vector",
  "positivePrompt": "A refined vector illustration of a sliced citrus arrangement with oranges, grapefruits, lemon wedges, curling peels, small leaves, and radiating geometric motifs, arranged in an elegant Art Deco composition. Clean contours, flat shapes, precise symmetry, bold negative space, premium packaging aesthetic, decorative border elements, layered circular segments, sophisticated editorial design feel, highly polished scalable vector style.",
  "width": 1024,
  "height": 1024,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            232,
            93,
            42
          ]
        },
        {
          "rgb": [
            255,
            190,
            92
          ]
        },
        {
          "rgb": [
            243,
            239,
            224
          ]
        },
        {
          "rgb": [
            42,
            102,
            72
          ]
        },
        {
          "rgb": [
            28,
            43,
            58
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          250,
          246,
          238
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "9144d55c-3086-40ca-a77c-c60937d602a9",
  "imageUUID": "9dafebdc-09bf-49d4-b838-eb3468303a86",
  "imageURL": "https://im.runware.ai/image/os/a20d05/ws/2/ii/9dafebdc-09bf-49d4-b838-eb3468303a86.svg",
  "cost": 0.08
}
```

---

### Memphis Fruit Stand Signage (Text to Image)

![Memphis Fruit Stand Signage](https://assets.runware.ai/examples/recraft-v4-vector/2cbe1ec0-0468-487d-b774-a81651efa3b1.svg)

**Request**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "6c9b5d86-9366-4db6-8252-96adeac0a1d2",
  "model": "recraft:v4@vector",
  "positivePrompt": "A playful roadside fruit stand advertising graphic in polished vector illustration style, stacked crates of figs, peaches, and pears arranged in a lively asymmetrical composition, oversized sliced fruit motifs, striped awning, hand-painted price tags, chunky geometric leaves, cheerful summertime atmosphere, flat shapes, sharp edges, minimal gradients, clean negative space, branding-friendly composition, highly scalable iconographic detail, modern Memphis-inspired design language",
  "width": 1216,
  "height": 896,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            244,
            99,
            72
          ]
        },
        {
          "rgb": [
            255,
            193,
            7
          ]
        },
        {
          "rgb": [
            76,
            175,
            80
          ]
        },
        {
          "rgb": [
            63,
            81,
            181
          ]
        },
        {
          "rgb": [
            255,
            241,
            230
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          255,
          248,
          240
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "vectorize",
  "taskUUID": "6c9b5d86-9366-4db6-8252-96adeac0a1d2",
  "imageUUID": "3ac5fde6-8d87-426a-b9e8-aefe2ee97174",
  "imageURL": "https://im.runware.ai/image/os/a25d05/ws/2/ii/3ac5fde6-8d87-426a-b9e8-aefe2ee97174.svg",
  "cost": 0.08
}
```