---
title: Ideogram 1.0 Remix | Runware Docs
url: https://runware.ai/docs/models/ideogram-1-0-remix
description: Remix Ideogram 1.0 images with rich style control
---
# Ideogram 1.0 Remix

Ideogram 1.0 Remix lets you transform existing images with new styles and moods. Provide a reference image with a prompt to iterate on layout or typography. Ideal for brand teams that need fast visual variations from a single base concept.

- **ID**: `ideogram:1@2`
- **Status**: live
- **Creator**: Ideogram
- **Capabilities**: Image to Image

## Compatibility & Validation

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

---

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `1K (10:16)` | `768x1232` |
| `1K (16:10)` | `1232x768` |
| `1K (9:16)` | `720x1280` |
| `1K (16:9)` | `1280x720` |
| `1K (3:2)` | `1152x768` |
| `1K (2:3)` | `832x1248` |
| `1K (4:3)` | `1024x768` |
| `1K (3:4)` | `768x1024` |
| `1K (1:1)` | `1024x1024` |
| `1K (1:3)` | `512x1536` |
| `1K (3:1)` | `1536x512` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

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

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

Image output type.

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

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

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

Content safety checking configuration for image generation.

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

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

Include task cost in the response.

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

**Inputs**

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

### [referenceImages](https://runware.ai/docs/models/ideogram-1-0-remix#request-inputs-referenceimages)

- **Path**: `inputs.referenceImages`
- **Type**: `array of strings`
- **Required**: true

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

**Generation Parameters**

Core parameters for controlling the generated content.

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

- **Type**: `string`
- **Required**: true
- **Value**: `ideogram:1@2`

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/ideogram-1-0-remix#request-positiveprompt)

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

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)

### [negativePrompt](https://runware.ai/docs/models/ideogram-1-0-remix#request-negativeprompt)

- **Type**: `string`
- **Min**: `1`
- **Max**: `2000`

Prompt to guide what to exclude from generation. Ignored when guidance is disabled (CFGScale ≤ 1).

**Learn more** (1 resource):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)

### [width](https://runware.ai/docs/models/ideogram-1-0-remix#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/ideogram-1-0-remix#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.ideogram\` object.

### [magicPrompt](https://runware.ai/docs/models/ideogram-1-0-remix#request-providersettings-ideogram-magicprompt)

- **Path**: `providerSettings.ideogram.magicPrompt`
- **Type**: `string`
- **Default**: `AUTO`

Automatic prompt enhancement.

**Allowed values**:

- `AUTO` Content-based enhancement.
- `ON` Always enhance.
- `OFF` No enhancement.

### [remixStrength](https://runware.ai/docs/models/ideogram-1-0-remix#request-providersettings-ideogram-remixstrength)

- **Path**: `providerSettings.ideogram.remixStrength`
- **Type**: `integer`
- **Min**: `1`
- **Max**: `100`
- **Default**: `50`

Transformation intensity for Remix models. Higher values create more dramatic changes.

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

- **Path**: `providerSettings.ideogram.renderingSpeed`
- **Type**: `string`
- **Default**: `DEFAULT`

Generation speed/quality tradeoff.

**Allowed values**:

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

### [styleReferenceImages](https://runware.ai/docs/models/ideogram-1-0-remix#request-providersettings-ideogram-stylereferenceimages)

- **Path**: `providerSettings.ideogram.styleReferenceImages`
- **Type**: `array of strings`

Reference images for visual style transfer. The model extracts and applies the artistic style from these images.

### [styleType](https://runware.ai/docs/models/ideogram-1-0-remix#request-providersettings-ideogram-styletype)

- **Path**: `providerSettings.ideogram.styleType`
- **Type**: `string`
- **Default**: `AUTO`

Visual style and rendering approach.

**Allowed values**:

- `AUTO` Automatically selects the most appropriate style.
- `GENERAL` Versatile style suitable for most content types.
- `REALISTIC` Photorealistic rendering with natural lighting and textures.
- `DESIGN` Optimized for graphic design, logos, and typography.
- `RENDER_3D` Three-dimensional rendering with depth and modeling effects.
- `ANIME` Anime/manga visual style.
- `FICTION` Stylized rendering for fictional and fantasy content.

## Response Parameters

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

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

Type of the task.

### [taskUUID](https://runware.ai/docs/models/ideogram-1-0-remix#response-taskuuid)

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

UUID of the task.

### [imageUUID](https://runware.ai/docs/models/ideogram-1-0-remix#response-imageuuid)

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

UUID of the output image.

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

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

URL of the output image.

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

- **Type**: `string`

Base64-encoded image data.

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

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

Data URI of the output image.

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

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

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

- **Type**: `float`

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

## Examples

### Retro Futurist Cereal Package (Image to Image)

![Retro Futurist Cereal Package](https://assets.runware.ai/examples/ideogram-1-0-remix/9a0c77c7-3da9-4dab-9259-10227118ca42.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c66f635c-915f-4f27-8add-f02b6510a321",
  "model": "ideogram:1@2",
  "positivePrompt": "Transform the reference cereal box into a bold retro-futurist breakfast package for a fictional brand called SUNSPARK CRISPS. Keep the front-facing box layout from the reference, but redesign the surface with punchy geometric shapes, chrome accents, starburst motifs, cheerful grain illustrations, and large readable package text. Include prominent product name typography, a playful badge that says WHOLE GRAIN, a small corner burst that says NEW SHAPE, and a neat nutrition panel area. Bright tangerine, aqua, cream, and cobalt palette, crisp print-ready composition, inventive branding, polished commercial packaging mockup, highly legible text, clean edges, premium art direction.",
  "negativePrompt": "blurry text, warped box structure, damaged packaging, handwritten lettering, photoreal human subjects, cluttered background, excessive shadows, duplicate elements, messy composition",
  "width": 1024,
  "height": 768,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "ON"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/c1314d9f-c48b-46ac-a21b-dbe57a3f3d7e.jpg"
    ]
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c66f635c-915f-4f27-8add-f02b6510a321",
  "imageUUID": "3412e246-0d5e-4e0c-acef-18688eecdb10",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/2/ii/3412e246-0d5e-4e0c-acef-18688eecdb10.jpg",
  "seed": 1676511258,
  "cost": 0.06
}
```

---

### Kinetic Tea Tin Identity (Image to Image)

![Kinetic Tea Tin Identity](https://assets.runware.ai/examples/ideogram-1-0-remix/f3cc95d8-1b90-47f7-8274-fcde0c36377a.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "45c552c4-785b-4595-adb9-393191f536ac",
  "model": "ideogram:1@2",
  "positivePrompt": "Remix this tea tin package into an expressive premium herbal blend identity called 'EMBER LEAF'. Keep the cylindrical tin structure and front-facing composition from the reference image, but redesign the label with striking editorial typography, layered paper-cut botanical shapes, ember-orange, deep spruce, cream, and muted gold accents, crisp ingredient hierarchy, elegant decorative borders, and a tactile print-design feel. Add subtle leaf silhouettes, contemporary artisanal branding, and believable packaging details suitable for a boutique grocery shelf. Clean studio background, polished commercial presentation, highly legible text placement, sophisticated graphic balance.",
  "negativePrompt": "blurry text, warped container, extra tins, cluttered background, low contrast, messy composition, plastic look, damaged label, vintage perfume styling, bakery packaging, cereal box, unreadable typography",
  "width": 1024,
  "height": 768,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "ON"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/39ba72cd-b83c-423a-b1a3-16cacb6937f8.jpg"
    ]
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "45c552c4-785b-4595-adb9-393191f536ac",
  "imageUUID": "bbe17f75-844c-4364-942b-2c817551b206",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/2/ii/bbe17f75-844c-4364-942b-2c817551b206.jpg",
  "seed": 1916038547,
  "cost": 0.06
}
```

---

### Art Deco Perfume Label (Image to Image)

![Art Deco Perfume Label](https://assets.runware.ai/examples/ideogram-1-0-remix/cac379b8-f39d-44fa-8925-7a8fff64684c.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c9c1def4-c5b6-4f54-989f-d3922ba5d986",
  "model": "ideogram:1@2",
  "positivePrompt": "Transform the reference packaging into a luxurious Art Deco fragrance brand presentation. Keep the bottle and box layout recognizable, but redesign the label and box graphics with gilded geometric borders, black and ivory color blocking, fine line ornament, fan motifs, embossed metallic details, and elegant typographic hierarchy. Add the brand name 'AURELIA NOIR' prominently on the front with the subtitle 'Parfum Extrait' beneath it. Sophisticated studio lighting, polished surfaces, premium editorial product styling, high-end cosmetic branding, crisp legible text, visually balanced composition.",
  "negativePrompt": "cartoon, low resolution, blurry text, warped packaging, extra objects, messy background, grunge, handwritten lettering, oversaturated colors, plastic toy appearance",
  "width": 1024,
  "height": 768,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "OFF"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/e789c579-45b2-4ad6-a50f-4d1555aed663.jpg"
    ]
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "c9c1def4-c5b6-4f54-989f-d3922ba5d986",
  "imageUUID": "c9cbc1db-e38d-4c79-be84-f3e052f13818",
  "imageURL": "https://im.runware.ai/image/os/a13d12/ws/2/ii/c9cbc1db-e38d-4c79-be84-f3e052f13818.jpg",
  "seed": 1512689630,
  "cost": 0.06
}
```

---

### Ornate Bakery Box Redesign (Image to Image)

![Ornate Bakery Box Redesign](https://assets.runware.ai/examples/ideogram-1-0-remix/c4cd7bc9-2e05-43b3-a43e-3785ed173aee.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "018cdac3-3f20-4090-a170-634dc73279cc",
  "model": "ideogram:1@2",
  "positivePrompt": "Remix this packaging mockup into an imaginative boutique pâtisserie gift box design inspired by gilded storybook illustration and Art Nouveau flourishes. Keep the overall box structure and front-facing composition from the reference image, but transform the label into an elegant confectionery brand identity. Use a palette of buttercream, pistachio, apricot, and antique gold. Add intricate illustrated details such as curling wheat, pears, sugared plums, tiny swans, ribbon motifs, and decorative filigree framing. Include beautifully styled packaging typography reading 'Maison Doucette' with smaller text 'Fine Pastries & Candied Fruit'. Premium printed paper texture, embossed accents, tasteful luxury branding, highly polished commercial product photography.",
  "negativePrompt": "low resolution, blurry text, warped packaging, crushed box, messy layout, extra boxes, cluttered background, harsh shadows, distorted lettering, plastic look, cheap branding, oversaturated colors",
  "width": 1024,
  "height": 768,
  "providerSettings": {
    "ideogram": {
      "magicPrompt": "OFF"
    }
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/20fe6f7f-3a50-44c6-aae5-7b8d461ead4e.jpg"
    ]
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "018cdac3-3f20-4090-a170-634dc73279cc",
  "imageUUID": "9dd07b6d-137f-4142-b4c7-bf5fed4377b6",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/2/ii/9dd07b6d-137f-4142-b4c7-bf5fed4377b6.jpg",
  "seed": 1279128317,
  "cost": 0.06
}
```