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

# GPT-Image-2 Official Channel Image Generation

>  - OpenAI official `gpt-image-2` model, based on `/v1/images/generations` compatible protocol
- Asynchronous processing, returns `task_id` for subsequent queries
- Text-to-image / image-to-image / inpainting (mask) — all-in-one
- New `resolution` tier field — 1K / 2K / 4K selection
- 15 aspect ratios supported across the 1K / 2K / 4K tiers
- Up to 4 images per request, up to 16 reference images
- 95% parameter alignment with `gpt-image-1.5-official` — migration only requires changing the model name 

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url https://gccai.heqingsong.uk/v1/images/generations \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "gpt-image-2-official",
      "prompt": "An ancient castle beneath a starry sky",
      "size": "16:9",
      "resolution": "2k",
      "quality": "high",
      "n": 1
    }'
  ```

  ```python Python theme={null}
  import requests

  url = "https://gccai.heqingsong.uk/v1/images/generations"

  payload = {
      "model": "gpt-image-2-official",
      "prompt": "An ancient castle beneath a starry sky",
      "size": "16:9",
      "resolution": "2k",
      "quality": "high",
      "n": 1
  }

  headers = {
      "Authorization": "Bearer <token>",
      "Content-Type": "application/json"
  }

  response = requests.post(url, json=payload, headers=headers)

  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const url = "https://gccai.heqingsong.uk/v1/images/generations";

  const payload = {
    model: "gpt-image-2-official",
    prompt: "An ancient castle beneath a starry sky",
    size: "16:9",
    resolution: "2k",
    quality: "high",
    n: 1,
  };

  const headers = {
    Authorization: "Bearer <token>",
    "Content-Type": "application/json",
  };

  fetch(url, {
    method: "POST",
    headers: headers,
    body: JSON.stringify(payload),
  })
    .then((response) => response.json())
    .then((data) => console.log(data))
    .catch((error) => console.error("Error:", error));
  ```

  ```go Go theme={null}
  package main

  import (
      "bytes"
      "encoding/json"
      "fmt"
      "io/ioutil"
      "net/http"
  )

  func main() {
      url := "https://gccai.heqingsong.uk/v1/images/generations"

      payload := map[string]interface{}{
          "model":      "gpt-image-2-official",
          "prompt":     "An ancient castle beneath a starry sky",
          "size":       "16:9",
          "resolution": "2k",
          "quality":    "high",
          "n":          1,
      }

      jsonData, _ := json.Marshal(payload)

      req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
      req.Header.Set("Authorization", "Bearer <token>")
      req.Header.Set("Content-Type", "application/json")

      client := &http.Client{}
      resp, err := client.Do(req)
      if err != nil {
          panic(err)
      }
      defer resp.Body.Close()

      body, _ := ioutil.ReadAll(resp.Body)
      fmt.Println(string(body))
  }
  ```

  ```java Java theme={null}
  import java.net.http.HttpClient;
  import java.net.http.HttpRequest;
  import java.net.http.HttpResponse;
  import java.net.URI;

  public class Main {
      public static void main(String[] args) throws Exception {
          String url = "https://gccai.heqingsong.uk/v1/images/generations";

          String payload = """
          {
            "model": "gpt-image-2-official",
            "prompt": "An ancient castle beneath a starry sky",
            "size": "16:9",
            "resolution": "2k",
            "quality": "high",
            "n": 1
          }
          """;

          HttpClient client = HttpClient.newHttpClient();
          HttpRequest request = HttpRequest.newBuilder()
              .uri(URI.create(url))
              .header("Authorization", "Bearer <token>")
              .header("Content-Type", "application/json")
              .POST(HttpRequest.BodyPublishers.ofString(payload))
              .build();

          HttpResponse<String> response = client.send(request,
              HttpResponse.BodyHandlers.ofString());

          System.out.println(response.body());
      }
  }
  ```

  ```php PHP theme={null}
  <?php

  $url = "https://gccai.heqingsong.uk/v1/images/generations";

  $payload = [
      "model" => "gpt-image-2-official",
      "prompt" => "An ancient castle beneath a starry sky",
      "size" => "16:9",
      "resolution" => "2k",
      "quality" => "high",
      "n" => 1
  ];

  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
  curl_setopt($ch, CURLOPT_HTTPHEADER, [
      "Authorization: Bearer <token>",
      "Content-Type: application/json"
  ]);

  $response = curl_exec($ch);
  curl_close($ch);

  echo $response;
  ?>
  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'json'
  require 'uri'

  url = URI("https://gccai.heqingsong.uk/v1/images/generations")

  payload = {
    model: "gpt-image-2-official",
    prompt: "An ancient castle beneath a starry sky",
    size: "16:9",
    resolution: "2k",
    quality: "high",
    n: 1
  }

  http = Net::HTTP.new(url.host, url.port)
  http.use_ssl = true

  request = Net::HTTP::Post.new(url)
  request["Authorization"] = "Bearer <token>"
  request["Content-Type"] = "application/json"
  request.body = payload.to_json

  response = http.request(request)
  puts response.body
  ```

  ```swift Swift theme={null}
  import Foundation

  let url = URL(string: "https://gccai.heqingsong.uk/v1/images/generations")!

  let payload: [String: Any] = [
      "model": "gpt-image-2-official",
      "prompt": "An ancient castle beneath a starry sky",
      "size": "16:9",
      "resolution": "2k",
      "quality": "high",
      "n": 1
  ]

  var request = URLRequest(url: url)
  request.httpMethod = "POST"
  request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
  request.setValue("application/json", forHTTPHeaderField: "Content-Type")
  request.httpBody = try? JSONSerialization.data(withJSONObject: payload)

  let task = URLSession.shared.dataTask(with: request) { data, response, error in
      if let error = error {
          print("Error: \(error)")
          return
      }

      if let data = data, let responseString = String(data: data, encoding: .utf8) {
          print(responseString)
      }
  }

  task.resume()
  ```

  ```csharp C# theme={null}
  using System;
  using System.Net.Http;
  using System.Text;
  using System.Threading.Tasks;

  class Program
  {
      static async Task Main(string[] args)
      {
          var url = "https://gccai.heqingsong.uk/v1/images/generations";

          var payload = @"{
              ""model"": ""gpt-image-2-official"",
              ""prompt"": ""An ancient castle beneath a starry sky"",
              ""size"": ""16:9"",
              ""resolution"": ""2k"",
              ""quality"": ""high"",
              ""n"": 1
          }";

          using var client = new HttpClient();
          client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");

          var content = new StringContent(payload, Encoding.UTF8, "application/json");
          var response = await client.PostAsync(url, content);
          var result = await response.Content.ReadAsStringAsync();

          Console.WriteLine(result);
      }
  }
  ```

  ```dart Dart theme={null}
  import 'dart:convert';
  import 'package:http/http.dart' as http;

  void main() async {
    final url = Uri.parse('https://gccai.heqingsong.uk/v1/images/generations');

    final payload = {
      'model': 'gpt-image-2-official',
      'prompt': 'An ancient castle beneath a starry sky',
      'size': '16:9',
      'resolution': '2k',
      'quality': 'high',
      'n': 1,
    };

    final response = await http.post(
      url,
      headers: {
        'Authorization': 'Bearer <token>',
        'Content-Type': 'application/json',
      },
      body: jsonEncode(payload),
    );

    print(response.body);
  }
  ```

  ```r R theme={null}
  library(httr)
  library(jsonlite)

  url <- "https://gccai.heqingsong.uk/v1/images/generations"

  payload <- list(
    model = "gpt-image-2-official",
    prompt = "An ancient castle beneath a starry sky",
    size = "16:9",
    resolution = "2k",
    quality = "high",
    n = 1
  )

  response <- POST(
    url,
    add_headers(
      Authorization = "Bearer <token>",
      `Content-Type` = "application/json"
    ),
    body = toJSON(payload, auto_unbox = TRUE),
    encode = "raw"
  )

  cat(content(response, "text"))
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "code": 200,
    "data": [
      {
        "status": "submitted",
        "task_id": "task_01KPTXXXXXXXXXXXXXXX"
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "error": {
      "code": 400,
      "message": "Invalid parameters: size not allowed / resolution not supported / pixel violation, etc.",
      "type": "invalid_request_error"
    }
  }
  ```

  ```json 401 theme={null}
  {
    "error": {
      "code": 401,
      "message": "Authentication failed, please check your API key",
      "type": "authentication_error"
    }
  }
  ```

  ```json 402 theme={null}
  {
    "error": {
      "code": 402,
      "message": "Insufficient account balance, please top up and try again",
      "type": "payment_required"
    }
  }
  ```

  ```json 403 theme={null}
  {
    "error": {
      "code": 403,
      "message": "Access forbidden, you do not have permission to access this resource",
      "type": "permission_error"
    }
  }
  ```

  ```json 429 theme={null}
  {
    "error": {
      "code": 429,
      "message": "Too many requests, please try again later",
      "type": "rate_limit_error"
    }
  }
  ```

  ```json 500 theme={null}
  {
    "error": {
      "code": 500,
      "message": "Internal server error, please try again later",
      "type": "server_error"
    }
  }
  ```

  ```json 502 theme={null}
  {
    "error": {
      "code": 502,
      "message": "Bad gateway, the server is temporarily unavailable",
      "type": "bad_gateway"
    }
  }
  ```
</ResponseExample>

## Authorizations

<ParamField header="Authorization" type="string" required>
  All endpoints require Bearer Token authentication

  Get your API Key:

  Visit the [API Key management page](https://gccai.heqingsong.uk/keys) to get your API Key

  Include it in the request header:

  ```
  Authorization: Bearer YOUR_API_KEY
  ```
</ParamField>

## Body

<ParamField body="model" type="string" default="gpt-image-2-official" required>
  Image generation model name

  Fixed to `gpt-image-2-official` (OpenAI official gpt-image-2 model)
</ParamField>

<ParamField body="prompt" type="string" required>
  Text description for image generation

  * Supports English and Chinese, detailed descriptions recommended
  * Pre-submission content moderation / safety review — violations are rejected immediately
</ParamField>

<ParamField body="size" type="string" default="1:1">
  Image aspect ratio

  Externally uses ratio values; internally mapped to actual pixels according to `resolution`.

  Supported ratios, plus `auto` to let the server pick a suitable ratio automatically:

  * `auto` - Automatic (server picks a ratio based on prompt / reference images)
  * `1:1` - Square (default, social avatars / logos)
  * `3:2` - Landscape (common DSLR ratio)
  * `2:3` - Portrait (vertical posters)
  * `4:3` - Landscape (classic monitor / slideshow)
  * `3:4` - Portrait
  * `5:4` - Landscape
  * `4:5` - Portrait (Instagram vertical post)
  * `16:9` - Landscape (widescreen video thumbnail)
  * `9:16` - Portrait (phone full-screen / short video cover)
  * `2:1` - Landscape (web banner)
  * `1:2` - Portrait
  * `3:1` - Landscape (ultra-wide banner)
  * `1:3` - Portrait (extra-tall poster)
  * `21:9` - Landscape (cinematic ultra-wide)
  * `9:21` - Portrait

  Pixel dimensions can also be passed directly, such as `1881x836` / `887x1774`.

  <Warning>
    When `size` is set to `auto`, the default ratio is `1:1`.
  </Warning>
</ParamField>

<ParamField body="resolution" type="string" default="1k">
  Resolution tier (**new field**)

  Controls the actual output clarity.

  * `1k` - 1024 baseline, cost-efficient for daily use (default)
  * `2k` - 2048 baseline, suitable for posters / high-definition needs
  * `4k` - 3840 baseline, supports the 15 ratios in the mapping table below

  <Warning>
    4K supports the 15 ratios in the mapping table below; you can also pass the pixel dimensions from the table directly via `size`.
  </Warning>
</ParamField>

<ParamField body="quality" type="string" default="auto">
  Image quality

  * `auto` - Automatic (default, typically equivalent to `low`)
  * `low` - Fast and economical, sufficient for rough outlines
  * `medium` - Balanced
  * `high` - Maximum precision (4K + high can take >120s)
</ParamField>

<ParamField body="background" type="string" default="auto">
  Background mode

  * `auto` - Automatic (default)
  * `opaque` - Opaque
  * `transparent` - ⚠️ **gpt-image-2-official does not support transparent backgrounds; the system silently downgrades to `auto`**
</ParamField>

<ParamField body="moderation" type="string" default="auto">
  Moderation strength

  * `auto` - Default moderation strength
  * `low` - More lenient moderation
</ParamField>

<ParamField body="output_format" type="string" default="png">
  Output format

  * `png` - Default
  * `jpeg` - Smaller files
  * `webp` - Optimal for modern browsers
</ParamField>

<ParamField body="output_compression" type="integer">
  Output compression level, range `0-100`

  * Only effective for `jpeg` / `webp`
</ParamField>

<ParamField body="n" type="integer" default="1">
  Number of images to generate

  Range: `1 ~ 4`

  <Warning>
    Must be a pure number (e.g., `1`), do not wrap in quotes
  </Warning>
</ParamField>

<ParamField body="image_urls" type="array">
  Reference image URL array

  <Expandable title="Details">
    * Up to 20 MB per image, 256 MB total cap
    * Up to **16** reference images; more will be rejected
    * Must be publicly accessible, stable image URLs
  </Expandable>
</ParamField>

<ParamField body="mask_url" type="string">
  Mask image URL, used for inpainting

  * Must be used together with `image_urls`

  <Warning>
    1. Ensure the mask image has an Alpha channel before uploading.

    2. The mask image dimensions must **match the first reference image**.
  </Warning>
</ParamField>

## Size × Resolution Mapping

`size × resolution` → OpenAI actual pixels (15 ratios × 3 tiers):

| size   | `1k`                | `2k`      | `4k`          |
| ------ | ------------------- | --------- | ------------- |
| `1:1`  | 1024×1024           | 2048×2048 | **2880×2880** |
| `3:2`  | 1536×1024           | 2048×1360 | **3520×2336** |
| `2:3`  | 1024×1536           | 1360×2048 | **2336×3520** |
| `4:3`  | 1024×768            | 2048×1536 | **3312×2480** |
| `3:4`  | 768×1024            | 1536×2048 | **2480×3312** |
| `5:4`  | 1280×1024           | 2560×2048 | **3216×2576** |
| `4:5`  | 1024×1280           | 2048×2560 | **2576×3216** |
| `16:9` | 1536×864            | 2048×1152 | **3840×2160** |
| `9:16` | 864×1536            | 1152×2048 | **2160×3840** |
| `2:1`  | 2048×1024           | 2688×1344 | **3840×1920** |
| `1:2`  | 1024×2048           | 1344×2688 | **1920×3840** |
| `3:1`  | 1881×836 / 1536×512 | 3072×1024 | **3840×1280** |
| `1:3`  | 887×1774 / 512×1536 | 1024×3072 | **1280×3840** |
| `21:9` | 2016×864            | 2688×1152 | **3840×1648** |
| `9:21` | 864×2016            | 1152×2688 | **1648×3840** |

> Note: Some dimensions are approximated based on multiples of 16 and pixel limits, such as `3:2` / `2:3` @ 2K being 2048×1360 and `21:9` @ 4K being 3840×1648. Use the actual pixels in the table as the source of truth.

## Usage Examples

**Text-to-image (minimal request)**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "An ancient castle beneath a starry sky"
}
```

**2K high-definition poster**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "Cyberpunk night scene",
  "size": "16:9",
  "resolution": "2k",
  "quality": "high",
  "output_format": "jpeg",
  "output_compression": 90
}
```

**4K wallpaper**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "Snow mountain sunrise panorama",
  "size": "16:9",
  "resolution": "4k",
  "quality": "high",
  "n": 1
}
```

**Image-to-image (multi-reference fusion)**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "Fuse the two reference images into a single illustration poster, preserving the main silhouettes",
  "size": "1:1",
  "quality": "high",
  "image_urls": [
    "https://your-cdn.com/input-a.png",
    "https://your-cdn.com/input-b.png"
  ]
}
```

**Inpainting (mask)**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "Replace the background with a desert sunset",
  "size": "1:1",
  "quality": "medium",
  "image_urls": ["https://your-cdn.com/photo.png"],
  "mask_url": "https://your-cdn.com/mask.png"
}
```

**Multiple images (n > 1)**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "Four minimalist poster variations of a red fox",
  "size": "1:1",
  "quality": "low",
  "n": 4
}
```

**Direct pixel string (advanced)**

```json theme={null}
{
  "model": "gpt-image-2-official",
  "prompt": "wide cinematic shot",
  "size": "3840x2160",
  "quality": "high"
}
```

## Response

<ResponseField name="code" type="integer">
  Response status code
</ResponseField>

<ResponseField name="data" type="array">
  Response data array

  <Expandable title="Properties">
    <ResponseField name="status" type="string">
      Task status

      * `submitted` - Submitted
    </ResponseField>

    <ResponseField name="task_id" type="string">
      Unique task identifier, used for subsequent result queries
    </ResponseField>
  </Expandable>
</ResponseField>

## Querying Task Results

After successful submission, a `task_id` is returned. Poll the task status via `GET /v1/tasks/{task_id}`, see [Task Query API](/en/api-reference/tasks/status) for details.

### Success Response Example

```json theme={null}
{
  "code": 200,
  "data": {
    "id": "task_01KPTXXXXXXXXXXXXXXX",
    "status": "completed",
    "progress": 100,
    "actual_time": 46,
    "cost": 0.05279,
    "credits_cost": 0.5279,
    "result": {
      "images": [
        {
          "url": [
            "https://upload.gccai.ai/f/image/xxxxxxxx-gpt_image_2_official_task_xxx_0.png"
          ],
          "expires_at": 1776928569
        }
      ]
    }
  }
}
```

Task status flow: `submitted` → `in_progress` → `completed` / `failed`.

Image access: `data.result.images[0].url[0]`.
