---
title: Recraft V4 Styles Vector | Runware Docs
url: https://runware.ai/docs/models/recraft-v4-styles-vector
description: Style-consistent SVG generation from reusable reference-based design styles
---
# Recraft V4 Styles Vector

Recraft V4 Styles Vector applies the V4 Styles family to vector output, generating SVG assets that stay aligned to a reusable reference-driven visual style. It is intended for teams that want style consistency not just in raster campaigns, but also in scalable design systems such as icons, logos, graphic marks, packaging elements, and illustration assets. The model is designed to capture the distinctive visual language of reference images without requiring a separate training workflow.

- **ID**: `recraft:v4@styles-vector`
- **Status**: live
- **Creator**: Recraft
- **Release Date**: August 13, 2026
- **Capabilities**: Text to Image, Vectorize, Checkpoint

## Compatibility & Validation

Provide exactly one of: `inputs.styleId`, `inputs.referenceImages`.

---

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-styles-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-styles-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-styles-vector#request-outputtype)

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

Image output type.

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

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

- **Type**: `boolean`

Include task cost in the response.

**Inputs**

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

### [referenceImages](https://runware.ai/docs/models/recraft-v4-styles-vector#request-inputs-referenceimages)

- **Path**: `inputs.referenceImages`
- **Type**: `array of strings`
- **File size (each)**: `up to 10 MB`
- **File size (total)**: `up to 64 MB`
- **Size (each)**: `256 px or more`

List of reference images (UUID, URL, Data URI, or Base64).

### [styleId](https://runware.ai/docs/models/recraft-v4-styles-vector#request-inputs-styleid)

- **Path**: `inputs.styleId`
- **Type**: `string`
- **Format**: `UUID v4`

Identifier of an existing style to apply.

**Core Parameters**

Primary parameters that define the task output.

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

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

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection](https://runware.ai/docs/learn/text-to-image#model-selection) (learn)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/learn/image-inpainting#model-specialized-inpainting-models) (learn)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/learn/image-outpainting#other-critical-parameters) (learn)

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

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

Text prompt describing elements to include in the generated output.

**Learn more** (1 resource):

- [Prompts](https://runware.ai/docs/learn/prompts) (learn)

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

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

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Dimensions](https://runware.ai/docs/learn/dimensions) (learn)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/learn/image-outpainting#dimensions-critical-for-outpainting) (learn)

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

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

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Dimensions](https://runware.ai/docs/learn/dimensions) (learn)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/learn/image-outpainting#dimensions-critical-for-outpainting) (learn)

**Settings**

Technical parameters to fine-tune the inference process. These must be nested inside the \`settings\` object.

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

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

Background color used for the generation.

**Learn more** (1 resource):

- [Color Palettes](https://runware.ai/docs/models/recraft-v4-1/guides/color-palettes) (learn)

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

- **Path**: `settings.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-styles-vector#request-settings-colors)

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

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

**Learn more** (1 resource):

- [Color Palettes](https://runware.ai/docs/models/recraft-v4-1/guides/color-palettes) (learn)

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

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

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

### [styleMatch](https://runware.ai/docs/models/recraft-v4-styles-vector#request-settings-stylematch)

- **Path**: `settings.styleMatch`
- **Type**: `string`
- **Default**: `precise`

How closely the style is followed. Overrides the match value stored on the style for this request.

**Allowed values**:

- `precise` Follows the style meticulously.
- `flexible` Matches the general look of the style.

## Response Parameters

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

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

Identifier for the type of task this response belongs to.

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

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

UUID v4 identifier echoed from the original request, used to match async responses to their tasks.

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

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

UUID of the output image.

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

- **Type**: `string`
- **Format**: `uri`

URL of the output image.

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

- **Type**: `string`

Base64-encoded image data.

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

- **Type**: `string`
- **Format**: `uri`

Data URI of the output image.

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

- **Type**: `float`

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

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

- **Path**: `outputs.styleId`
- **Type**: `object (1 property)`

Generated output artifacts.

#### [styleId](https://runware.ai/docs/models/recraft-v4-styles-vector#response-outputs-styleid)

- **Path**: `outputs.styleId`
- **Type**: `string`

The ID of the style applied to the generation. Can be used to reuse the style in later requests.