---
title: Ideogram 4.0 Remix | Runware Docs
url: https://runware.ai/docs/models/ideogram-4-0-remix
description: Prompt-guided image remixing with controllable source preservation
---
# Ideogram 4.0 Remix

Ideogram 4.0 Remix uses an existing image as the starting point for a new generation, letting teams rework visuals while controlling how closely the output stays tied to the source. The documented `image_weight` control shifts the balance between prompt-driven transformation and source-image preservation, making it useful for style exploration, brand-safe iteration, creative variation, and design updates that need to retain composition or subject structure.

- **ID**: `ideogram:4@remix`
- **Status**: coming-soon
- **Creator**: Ideogram
- **Release Date**: June 3, 2026
- **Capabilities**: Image to Image, Checkpoint

## Compatibility & Validation

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

---

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `2K (1:1)` | `2048x2048` |
| `2K (1:2)` | `1440x2880` |
| `2K (2:1)` | `2880x1440` |
| `2K (2:3)` | `1664x2496` |
| `2K (3:2)` | `2496x1664` |
| `2K (4:5)` | `1792x2240` |
| `2K (5:4)` | `2240x1792` |
| `2K (9:16)` | `1440x2560` |
| `2K (16:9)` | `2560x1440` |
| `2K (5:8)` | `1600x2560` |
| `2K (8:5)` | `2560x1600` |
| `2K (3:4)` | `1728x2304` |
| `2K (4:3)` | `2304x1728` |
| `2K (9:22)` | `1296x3168` |
| `2K (22:9)` | `3168x1296` |
| `2K (9:23)` | `1152x2944` |
| `2K (23:9)` | `2944x1152` |
| `2K (3:8)` | `1248x3328` |
| `2K (8:3)` | `3328x1248` |
| `2K (5:12)` | `1280x3072` |
| `2K (12:5)` | `3072x1280` |
| `2K (1:3)` | `1024x3072` |
| `2K (3:1)` | `3072x1024` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/ideogram-4-0-remix#request-tasktype)

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

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/ideogram-4-0-remix#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/ideogram-4-0-remix#request-outputtype)

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

Image output type.

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

### [outputFormat](https://runware.ai/docs/models/ideogram-4-0-remix#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/ideogram-4-0-remix#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/ideogram-4-0-remix#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/ideogram-4-0-remix#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/ideogram-4-0-remix#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/ideogram-4-0-remix#request-safety)

- **Path**: `safety.checkContent`
- **Type**: `object (1 property)`

Content safety checking configuration for image generation.

#### [checkContent](https://runware.ai/docs/models/ideogram-4-0-remix#request-safety-checkcontent)

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

Enable or disable content safety checking.

### [ttl](https://runware.ai/docs/models/ideogram-4-0-remix#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/ideogram-4-0-remix#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.

### [seedImage](https://runware.ai/docs/models/ideogram-4-0-remix#request-inputs-seedimage)

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

Image used as a starting point for the generation (UUID, URL, Data URI, or Base64).

**Learn more** (3 resources):

- [Image To Image: Seed Image The Foundation](https://runware.ai/docs/learn/image-to-image#seed-image-the-foundation) (learn)
- [Image Inpainting: Seed And Mask Image The Foundation](https://runware.ai/docs/learn/image-inpainting#seed-and-mask-image-the-foundation) (learn)
- [Image Outpainting: Seed Image The Starting Point](https://runware.ai/docs/learn/image-outpainting#seed-image-the-starting-point) (learn)

**Core Parameters**

Primary parameters that define the task output.

### [numberResults](https://runware.ai/docs/models/ideogram-4-0-remix#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.

### [model](https://runware.ai/docs/models/ideogram-4-0-remix#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `ideogram:4@remix`

Identifier of the model to use for generation.

### [positivePrompt](https://runware.ai/docs/models/ideogram-4-0-remix#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `2`
- **Max**: `2048`

Text prompt describing elements to include in the generated output.

### [width](https://runware.ai/docs/models/ideogram-4-0-remix#request-width)

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

Width of the generated media in pixels.

### [height](https://runware.ai/docs/models/ideogram-4-0-remix#request-height)

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

Height of the generated media in pixels.

### [strength](https://runware.ai/docs/models/ideogram-4-0-remix#request-strength)

- **Type**: `float`
- **Min**: `0`
- **Max**: `1`
- **Step**: `0.01`

Strength of the transformation. Lower values result in more influence from the original input. When omitted, the strength is chosen automatically from the prompt. Supplying a value overrides that automatic choice.

**Settings**

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

### [copyrightDetection](https://runware.ai/docs/models/ideogram-4-0-remix#request-settings-copyrightdetection)

- **Path**: `settings.copyrightDetection`
- **Type**: `boolean`
- **Default**: `false`

Opt into post-generation copyright detection using Hive likeness and logo checks.

### [renderingSpeed](https://runware.ai/docs/models/ideogram-4-0-remix#request-settings-renderingspeed)

- **Path**: `settings.renderingSpeed`
- **Type**: `string`
- **Default**: `DEFAULT`

Generation speed/quality tradeoff.

**Allowed values**:

- `TURBO` Fastest generation.
- `DEFAULT` Balanced speed and quality.
- `QUALITY` Best quality.

## Response Parameters

### [taskType](https://runware.ai/docs/models/ideogram-4-0-remix#response-tasktype)

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

Identifier for the type of task this response belongs to.

### [taskUUID](https://runware.ai/docs/models/ideogram-4-0-remix#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/ideogram-4-0-remix#response-imageuuid)

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

UUID of the output image.

### [imageURL](https://runware.ai/docs/models/ideogram-4-0-remix#response-imageurl)

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

URL of the output image.

### [imageBase64Data](https://runware.ai/docs/models/ideogram-4-0-remix#response-imagebase64data)

- **Type**: `string`

Base64-encoded image data.

### [imageDataURI](https://runware.ai/docs/models/ideogram-4-0-remix#response-imagedatauri)

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

Data URI of the output image.

### [seed](https://runware.ai/docs/models/ideogram-4-0-remix#response-seed)

- **Type**: `integer`

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

### [NSFWContent](https://runware.ai/docs/models/ideogram-4-0-remix#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/ideogram-4-0-remix#response-cost)

- **Type**: `float`

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

### [structuredPrompt](https://runware.ai/docs/models/ideogram-4-0-remix#response-structuredprompt)

- **Type**: `object`

Structured prompt the model used for the generation. A natural-language `positivePrompt` is expanded into this form, which can be sent back as `settings.structuredPrompt` to iterate.