> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runflow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# GPT Image 2

> GPT Image 2.0, OpenAI's latest image model, is capable of creating extremely detailed images with fine typography.

<Info>
  Pricing: **\$0.133/image**. Endpoint: `POST /v1/models/openai/gpt-image-2/runs`.
</Info>

GPT Image 2.0, OpenAI's latest image model, is capable of creating extremely detailed images with fine typography.

## Overview

* **Endpoint**: [https://api.runflow.io/v1/models/openai/gpt-image-2/runs](https://api.runflow.io/v1/models/openai/gpt-image-2/runs)
* **Model ID**: openai/gpt-image-2
* **Provider**: OpenAI
* **License**: commercial
* **Last Updated**: 2026-04-21

## Pricing

* **Base price**: \$0.133/image
* **Note**: High quality (default)

# GPT Image 2 API

**Endpoint:** `POST /v1/models/openai/gpt-image-2/runs`

## Run the model

### Python

```python theme={"dark"}
import requests

response = requests.post(
    "https://api.runflow.io/v1/models/openai/gpt-image-2/runs",
    headers={"Authorization": "Bearer RUNFLOW_API_KEY"},
    json={
        "input": {
            "prompt": "A hand-drawn storefront sign reading 'CIRCUIT & GRAIN - specialty coffee' on polished brass, warm morning sunlight, shallow depth of field, the shop window visible behind with pastry trays, cinematic photograph"
        },
        "callback_url": "https://your-server.com/webhook"
    },
)

data = response.json()
print(data)
```

### Node.js

```javascript theme={"dark"}
const response = await fetch(
  "https://api.runflow.io/v1/models/openai/gpt-image-2/runs",
  {
    method: "POST",
    headers: {
      "Authorization": "Bearer RUNFLOW_API_KEY",
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
        "input": {
            "prompt": "A hand-drawn storefront sign reading 'CIRCUIT & GRAIN - specialty coffee' on polished brass, warm morning sunlight, shallow depth of field, the shop window visible behind with pastry trays, cinematic photograph"
        },
        "callback_url": "https://your-server.com/webhook"
    }),
  }
);

const data = await response.json();
console.log(data);
```

### cURL

```bash theme={"dark"}
curl -X POST https://api.runflow.io/v1/models/openai/gpt-image-2/runs \
  -H "Authorization: Bearer $RUNFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
    "input": {
        "prompt": "A hand-drawn storefront sign reading 'CIRCUIT & GRAIN - specialty coffee' on polished brass, warm morning sunlight, shallow depth of field, the shop window visible behind with pastry trays, cinematic photograph"
    },
    "callback_url": "https://your-server.com/webhook"
}
JSON
```

## Request parameters

| Parameter      | Type           | Required | Description                                                 |
| -------------- | -------------- | -------- | ----------------------------------------------------------- |
| `input`        | object         | required | Model input parameters. See "Input schema" below.           |
| `callback_url` | string \| null | optional | Webhook URL - POSTed when the run reaches a terminal state. |
| `metadata`     | object \| null | optional | Arbitrary key-value pairs attached to the run.              |

## Input schema

| Field           | Type    | Required | Allowed values                                                                            | Description                                                                                                                                                                                                     |
| --------------- | ------- | -------- | ----------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `prompt`        | string  | required | Any                                                                                       | The prompt for image generation                                                                                                                                                                                 |
| `num_images`    | integer | optional | Any                                                                                       | Number of images to generate                                                                                                                                                                                    |
| `output_format` | string  | optional | `jpeg`, `png`, `webp`                                                                     | Output format for the images                                                                                                                                                                                    |
| `image_size`    | string  | optional | `square_hd`, `square`, `portrait_4_3`, `portrait_16_9`, `landscape_4_3`, `landscape_16_9` | The size of the generated image. Supports preset names or explicit {width, height}. Both dimensions must be multiples of 16, max edge 3840px, aspect ratio \<= 3:1, total pixels between 655,360 and 8,294,400. |
| `quality`       | string  | optional | `low`, `medium`, `high`                                                                   | Quality for the generated image                                                                                                                                                                                 |
| `sync_mode`     | boolean | optional | Any                                                                                       | If `True`, the media will be returned as a data URI and the output data won't be available in the request history.                                                                                              |

## Output schema

| Field           | Type | Description                        |
| --------------- | ---- | ---------------------------------- |
| `outputs`       | json | Unified output array.              |
| `seed`          | json | Seed used for generation, or null. |
| `timing`        | json | Provider timing info, or null.     |
| `nsfw_detected` | json | NSFW flag, or null.                |

## Callback payload

When you provide a `callback_url`, Runflow POSTs to it once the run reaches a terminal state.

| Field          | Type           | Description                                                    |
| -------------- | -------------- | -------------------------------------------------------------- |
| `event`        | string         | Event type: "run.completed", "run.failed", or "run.cancelled". |
| `run_id`       | string         | The unique identifier of the run.                              |
| `status`       | string         | Terminal status: "succeeded", "failed", or "cancelled".        |
| `output`       | object \| null | The run output. Null if the run failed or was cancelled.       |
| `duration_ms`  | number \| null | Total run duration in milliseconds.                            |
| `created_at`   | string \| null | ISO 8601 timestamp when the run was created.                   |
| `completed_at` | string \| null | ISO 8601 timestamp when the run reached terminal state.        |
| `metadata`     | object \| null | The metadata object passed at run creation, if any.            |

* **Retries:** 3 attempts with exponential backoff (1s, 2s). Retries on 5xx / network errors only.
* **Headers:** `Runflow-Request-Id` is always sent. `Runflow-Signature` is sent if a signing secret is configured.

## Additional Resources

* [Playground](https://app.runflow.io/models/openai/gpt-image-2)
* [API Reference](https://app.runflow.io/models/openai/gpt-image-2?tab=api)
* [Documentation](https://docs.runflow.io)
* [OpenAPI](https://docs.runflow.io/api/openapi.public.json)

## Related

<CardGroup cols={2}>
  <Card title="Browse all models" icon="grid" href="/models">Browse the catalog.</Card>
  <Card title="Run lifecycle" icon="play" href="/concepts/runs">Callbacks, polling, statuses.</Card>
  <Card title="Callbacks" icon="webhook" href="/concepts/callbacks">Handle async results.</Card>
  <Card title="Pricing" icon="coin" href="/concepts/pricing">How requests bill out.</Card>
</CardGroup>
