---
title: Recraft V4 Pro | Runware Docs
url: https://runware.ai/docs/models/recraft-v4-pro
description: Advanced design-focused image generation with enhanced control and fidelity
---
# Recraft V4 Pro

Recraft V4 Pro is an advanced text-to-image model tailored for high-end creative production and brand-critical design work. It delivers elevated photorealism, nuanced lighting, refined composition, and contemporary styling suited for professional campaigns. The model provides enhanced control over color palettes, background colors, and style references, enabling precise brand alignment at 2K resolution. It is built to produce distinctive visuals with consistent aesthetic quality across marketing, advertising, and product-focused content.

- **ID**: `recraft:v4-pro@0`
- **Status**: live
- **Creator**: Recraft
- **Release Date**: February 17, 2026
- **Capabilities**: Text to Image, Image to Image

## Pricing

- **2048 x 2048**: `$0.25`

## Compatibility & Validation

`width` and `height` must be used together.

---

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#request-tasktype)

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

Identifier for the type of task being performed

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

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

Image output type.

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

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

- **Type**: `string`
- **Default**: `JPG`

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

- \`JPG\`: Best for photorealistic images with smaller file sizes (no transparency).
- \`PNG\`: Lossless compression, supports high quality and transparency (alpha channel).
- \`WEBP\`: Modern format providing superior compression and transparency support.

> [!NOTE]
> \*\*Transparency\*\*: If you are using features like background removal or LayerDiffuse that require transparency, you must select a format that supports an alpha channel (e.g., \`PNG\`, \`WEBP\`, \`TIFF\`). \`JPG\` does not support transparency.

**Allowed values**: `JPG` `PNG` `WEBP`

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

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/recraft-v4-pro#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#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#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.

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

- **Path**: `safety.checkContent`
- **Type**: `object (2 properties)`

Content safety checking configuration for image generation.

#### [checkContent](https://runware.ai/docs/models/recraft-v4-pro#request-safety-checkcontent)

- **Path**: `safety.checkContent`
- **Type**: `boolean`
- **Default**: `false`

Enable or disable content safety checking. When enabled, defaults to `fast` mode.

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

- **Path**: `safety.mode`
- **Type**: `string`
- **Default**: `none`

Safety checking mode for image generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Performs a single check.

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

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

Include task cost in the response.

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

- **Type**: `integer`
- **Min**: `1`
- **Max**: `20`
- **Default**: `1`

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

**Generation Parameters**

Core parameters for controlling the generated content.

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

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

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#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#request-width)

- **Type**: `integer`
- **Required**: true
- **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#request-height)

- **Type**: `integer`
- **Required**: true
- **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#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#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#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#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#response-tasktype)

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

Type of the task.

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

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

UUID of the task.

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

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

UUID of the output image.

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

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

URL of the output image.

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

- **Type**: `string`

Base64-encoded image data.

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

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

Data URI of the output image.

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

- **Type**: `integer`

The seed used for generation. If none was provided, shows the randomly generated seed.

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

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

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

- **Type**: `float`

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

## Examples

### Luxury Skincare Campaign Still Life (Text to Image)

![Luxury Skincare Campaign Still Life](https://assets.runware.ai/examples/recraft-v4-pro/81e1e175-7953-4fc6-9eb0-eb922b78fbea.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "96801d3b-21cb-4a22-85cd-7b136d9d5365",
  "model": "recraft:v4-pro@0",
  "positivePrompt": "A high-end luxury skincare campaign still life featuring a frosted glass serum bottle with a brushed gold dropper cap, placed on a sculptural cream stone pedestal with soft silk folds and subtle botanical accents. Editorial beauty photography, ultra-photorealistic materials, elegant soft shadows, luminous diffused studio lighting, precise reflections, premium minimalist composition, contemporary wellness branding aesthetic, clean negative space for ad layout, sophisticated macro detail, natural texture contrast, polished commercial art direction, aspirational and expensive mood.",
  "width": 2560,
  "height": 1664,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            233,
            223,
            205
          ]
        },
        {
          "rgb": [
            198,
            170,
            120
          ]
        },
        {
          "rgb": [
            214,
            228,
            221
          ]
        },
        {
          "rgb": [
            245,
            242,
            236
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          245,
          242,
          236
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "96801d3b-21cb-4a22-85cd-7b136d9d5365",
  "imageUUID": "77c84864-ba60-4bef-b97b-0760e36d08fd",
  "imageURL": "https://im.runware.ai/image/os/a08d21/ws/3/ii/77c84864-ba60-4bef-b97b-0760e36d08fd.jpg",
  "seed": 1066677725,
  "cost": 0.25
}
```

---

### Luxury Skincare Campaign (Text to Image)

![Luxury Skincare Campaign](https://assets.runware.ai/examples/recraft-v4-pro/d084e037-9797-4283-8896-8a8a6afa4326.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "5847a855-2f06-4ad8-a31a-ffe6db27c54c",
  "model": "recraft:v4-pro@0",
  "positivePrompt": "A high-end beauty advertising image for a luxury skincare brand: a frosted glass serum bottle with a brushed gold dropper cap centered on a smooth stone pedestal, surrounded by delicate water droplets, soft white orchids, and subtle reflections on a glossy surface. Clean editorial composition, contemporary premium branding aesthetic, elevated photorealism, soft diffused studio lighting with luminous highlights, elegant shadows, shallow depth of field, impeccable material detail, minimal yet sophisticated luxury campaign style, fresh radiant mood, crisp focus, premium magazine-cover quality.",
  "width": 2560,
  "height": 1664,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            244,
            236,
            220
          ]
        },
        {
          "rgb": [
            214,
            184,
            140
          ]
        },
        {
          "rgb": [
            255,
            255,
            255
          ]
        },
        {
          "rgb": [
            198,
            216,
            206
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          248,
          244,
          238
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "5847a855-2f06-4ad8-a31a-ffe6db27c54c",
  "imageUUID": "804d9cbe-dd65-4779-bb03-e0ca0d2b5da2",
  "imageURL": "https://im.runware.ai/image/os/a12d13/ws/2/ii/804d9cbe-dd65-4779-bb03-e0ca0d2b5da2.jpg",
  "seed": 994631116,
  "cost": 0.25
}
```

---

### Luxury Skincare Campaign Visual (Text to Image)

![Luxury Skincare Campaign Visual](https://assets.runware.ai/examples/recraft-v4-pro/cdf7f8df-2a0a-477b-92a3-544f0c41f4b1.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "b6fdf98c-2b66-4a41-b17a-10fb5fae4086",
  "model": "recraft:v4-pro@0",
  "positivePrompt": "A high-end beauty campaign image for a luxury skincare serum bottle centered on a smooth sculptural pedestal, frosted glass packaging with metallic rose-gold accents, luminous cream texture swirled beside the product, soft diffused studio lighting, subtle specular highlights, clean contemporary composition, premium editorial photography, sophisticated negative space, ultra-refined materials, delicate shadows, fresh dewy atmosphere, minimal but sumptuous art direction, brand-perfect cosmetic advertising aesthetic",
  "width": 2048,
  "height": 2048,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            236,
            223,
            214
          ]
        },
        {
          "rgb": [
            214,
            188,
            176
          ]
        },
        {
          "rgb": [
            183,
            136,
            122
          ]
        },
        {
          "rgb": [
            120,
            90,
            84
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          247,
          242,
          238
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "b6fdf98c-2b66-4a41-b17a-10fb5fae4086",
  "imageUUID": "d196ae03-0a93-487f-9982-66eaff2049c6",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/2/ii/d196ae03-0a93-487f-9982-66eaff2049c6.jpg",
  "seed": 103151844,
  "cost": 0.25
}
```

---

### Luminous Botanical Perfume Editorial (Text to Image)

![Luminous Botanical Perfume Editorial](https://assets.runware.ai/examples/recraft-v4-pro/770fb125-09fb-4cd4-8a80-17302f82a36b.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "409ed13d-d846-4d77-a4a0-36a503656308",
  "model": "recraft:v4-pro@0",
  "positivePrompt": "A luxury editorial product campaign featuring an elegant faceted glass perfume bottle with a smoked translucent cap, centered on a sculptural plinth surrounded by surreal nocturnal botanicals, dark plum orchids, silver-green leaves, and tiny dew pearls. Cinematic studio lighting with soft rim light, glossy reflections, subtle atmospheric haze, sophisticated negative space, premium cosmetics advertising aesthetic, contemporary art-direction, hyper-detailed materials, photorealistic glass and liquid, crisp label area, controlled composition, high-end magazine quality, moody yet luminous, rich contrast, immaculate retouching, distinctive premium branding feel, no people, no clutter.",
  "width": 2560,
  "height": 1664,
  "providerSettings": {
    "recraft": {
      "colors": [
        {
          "rgb": [
            34,
            27,
            52
          ]
        },
        {
          "rgb": [
            91,
            63,
            119
          ]
        },
        {
          "rgb": [
            182,
            160,
            214
          ]
        },
        {
          "rgb": [
            154,
            173,
            144
          ]
        },
        {
          "rgb": [
            228,
            230,
            236
          ]
        }
      ],
      "backgroundColor": {
        "rgb": [
          18,
          16,
          28
        ]
      }
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "409ed13d-d846-4d77-a4a0-36a503656308",
  "imageUUID": "5f134544-9238-4ca6-ad6c-5acc0903dc6a",
  "imageURL": "https://im.runware.ai/image/os/a08d21/ws/3/ii/5f134544-9238-4ca6-ad6c-5acc0903dc6a.jpg",
  "seed": 1168955941,
  "cost": 0.25
}
```