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

# GPT Image 2 Image Generation Beta

> - GPT Image 2 (gpt-image-2-beta) model supports text-to-image, image-to-image, and image editing modes
- Asynchronous processing mode, use the returned task ID to [query status](/en/api-manual/task-management/get-task-detail)
- Generated image links are valid for 24 hours, please save them promptly

**Size support:**
- Currently only supports `size=auto`, or ratio sizes (such as `size="1:1"`) with `resolution="1K"`
- When `size=auto`, the `resolution` field is ignored and treated as 1K
- `resolution="2K"` / `resolution="4K"` and explicit pixel sizes (such as `1024x1024`) are not currently supported
- For 2K, 4K, or explicit pixel control, use [gpt-image-2](/en/api-manual/image-series/gpt-image-2/gpt-image-2-image-generation)

**Billing (per_call):**
- Billed at the 1K tier only
- `n` is fixed at 1; `quality` is not exposed on this channel



## OpenAPI

````yaml en/api-manual/image-series/gpt-image-2/gpt-image-2-beta-image-generation.json POST /v1/images/generations
openapi: 3.1.0
info:
  title: gpt-image-2-beta API
  description: >-
    Create image tasks using AI models with support for multiple models and
    parameter configurations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.evolink.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Image Generation
    description: AI image generation APIs
paths:
  /v1/images/generations:
    post:
      tags:
        - Image Generation
      summary: gpt-image-2-beta API
      description: >-
        - GPT Image 2 (gpt-image-2-beta) model supports text-to-image,
        image-to-image, and image editing modes

        - Asynchronous processing mode, use the returned task ID to [query
        status](/en/api-manual/task-management/get-task-detail)

        - Generated image links are valid for 24 hours, please save them
        promptly


        **Size support:**

        - Currently only supports `size=auto`, or ratio sizes (such as
        `size="1:1"`) with `resolution="1K"`

        - When `size=auto`, the `resolution` field is ignored and treated as 1K

        - `resolution="2K"` / `resolution="4K"` and explicit pixel sizes (such
        as `1024x1024`) are not currently supported

        - For 2K, 4K, or explicit pixel control, use
        [gpt-image-2](/en/api-manual/image-series/gpt-image-2/gpt-image-2-image-generation)


        **Billing (per_call):**

        - Billed at the 1K tier only

        - `n` is fixed at 1; `quality` is not exposed on this channel
      operationId: createImageGeneration
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImageGenerationRequest'
            examples:
              text_to_image:
                summary: Text to Image (default auto / 1K tier)
                value:
                  model: gpt-image-2-beta
                  prompt: A beautiful colorful sunset over the ocean
              ratio_landscape:
                summary: Landscape ratio + 1K (16:9 / 1K)
                value:
                  model: gpt-image-2-beta
                  prompt: A beautiful colorful sunset over the ocean
                  size: '16:9'
                  resolution: 1K
              ratio_portrait:
                summary: Portrait ratio + 1K (9:16 / 1K)
                value:
                  model: gpt-image-2-beta
                  prompt: A beautiful colorful sunset over the ocean
                  size: '9:16'
                  resolution: 1K
      responses:
        '200':
          description: Image task created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImageGenerationResponse'
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: invalid_request
                  message: Invalid request parameters
                  type: invalid_request_error
        '401':
          description: Unauthenticated, invalid or expired token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: unauthorized
                  message: Invalid or expired token
                  type: authentication_error
        '402':
          description: Insufficient quota, recharge required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: insufficient_quota
                  message: Insufficient quota. Please top up your account.
                  type: insufficient_quota
        '403':
          description: Access denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: model_access_denied
                  message: 'Token does not have access to model: gpt-image-2-beta'
                  type: invalid_request_error
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: rate_limit_exceeded
                  message: Too many requests, please try again later
                  type: rate_limit_error
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error:
                  code: internal_error
                  message: Internal server error
                  type: api_error
components:
  schemas:
    ImageGenerationRequest:
      type: object
      required:
        - model
        - prompt
      properties:
        model:
          type: string
          description: Image generation model name
          enum:
            - gpt-image-2-beta
          default: gpt-image-2-beta
          example: gpt-image-2-beta
        prompt:
          type: string
          description: >-
            Prompt describing the image you want to generate, or describing how
            to edit the input image. Limited to 2000 tokens
          example: A beautiful colorful sunset over the ocean
          maxLength: 2000
        size:
          type: string
          description: >-
            Generated image size. Supports two modes:


            **1. `auto` (default)**


            The model automatically determines the output size. In this mode,
            the `resolution` field is ignored and treated as 1K.


            **2. Ratio (must be used with `resolution="1K"`)**


            - `1:1`: Square

            - `3:2` / `2:3`: Landscape / Portrait

            - `4:3` / `3:4`: Landscape / Portrait

            - `5:4` / `4:5`: Common social media

            - `16:9` / `9:16`: Widescreen landscape / portrait

            - `21:9` / `9:21`: Ultra-wide landscape / portrait

            - `2:1` / `1:2`: Landscape / Portrait

            - `3:1` / `1:3`: Panorama landscape / portrait (maximum aspect
            ratio)


            **Note:** Explicit pixel sizes (such as `1024x1024`) are not
            currently supported. For explicit pixel control, use
            [gpt-image-2](/en/api-manual/image-series/gpt-image-2/gpt-image-2-image-generation).
          default: auto
          example: '16:9'
        resolution:
          type: string
          description: >-
            Resolution tier. Effective only when `size` is a ratio. Currently
            only `1K` is supported.


            **When ignored:**

            - When `size=auto`, this field is ignored and treated as 1K (no need
            to pass this parameter)


            **Landscape / square output dimensions** (portrait dimensions are
            the landscape width/height swapped):


            | Ratio | 1K |

            |---|---|

            | `1:1` | 1024×1024 |

            | `2:1` | 1456×720 |

            | `3:1` | 1776×592 |

            | `3:2` | 1248×832 |

            | `4:3` | 1184×880 |

            | `5:4` | 1152×912 |

            | `16:9` | 1360×768 |

            | `21:9` | 1568×672 |


            **Note:** `2K` / `4K` are not currently supported. For higher
            resolution, use
            [gpt-image-2](/en/api-manual/image-series/gpt-image-2/gpt-image-2-image-generation).
          enum:
            - 1K
          default: 1K
          example: 1K
        image_urls:
          type: array
          description: >-
            Reference image URL list for image-to-image and image editing
            features


            **Notes:**

            - Up to `16` reference images per request

            - Supported formats: `.jpeg`, `.jpg`, `.png`, `.webp`

            - Image URLs must be directly accessible by the server, or URLs that
            trigger direct download (typically URLs ending with image extensions
            like `.png`, `.jpg`)
          items:
            type: string
            format: uri
          example:
            - https://example.com/image1.png
            - https://example.com/image2.png
          maxItems: 16
        callback_url:
          type: string
          description: >-
            HTTPS callback URL for task completion


            **Callback Timing:**

            - Triggered when task is completed, failed, or cancelled

            - Sent after billing confirmation


            **Security Restrictions:**

            - HTTPS protocol only

            - Internal IP addresses are prohibited (127.0.0.1, 10.x.x.x,
            172.16-31.x.x, 192.168.x.x, etc.)

            - URL length must not exceed `2048` characters


            **Callback Mechanism:**

            - Timeout: `10` seconds

            - Maximum `3` retries after failure (at `1`/`2`/`4` seconds after
            failure)

            - Callback response format is consistent with task query API

            - 2xx status code is considered successful, other codes trigger
            retry
          format: uri
          example: https://your-domain.com/webhooks/image-task-completed
    ImageGenerationResponse:
      type: object
      properties:
        created:
          type: integer
          description: Task creation timestamp
          example: 1757156493
        id:
          type: string
          description: Task ID
          example: task-unified-1757156493-imcg5zqt
        model:
          type: string
          description: Actual model name used
          example: gpt-image-2-beta
        object:
          type: string
          enum:
            - image.generation.task
          description: Task object type
        progress:
          type: integer
          description: Task progress percentage (0-100)
          minimum: 0
          maximum: 100
          example: 0
        status:
          type: string
          description: Task status
          enum:
            - pending
            - processing
            - completed
            - failed
          example: pending
        task_info:
          $ref: '#/components/schemas/TaskInfo'
          description: Async task information
        type:
          type: string
          enum:
            - text
            - image
            - audio
            - video
          description: Task output type
          example: image
        usage:
          $ref: '#/components/schemas/Usage'
          description: Usage and billing information
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code identifier
            message:
              type: string
              description: Error description
            type:
              type: string
              description: Error type
    TaskInfo:
      type: object
      properties:
        can_cancel:
          type: boolean
          description: Whether the task can be cancelled
          example: true
        estimated_time:
          type: integer
          description: Estimated completion time (seconds)
          minimum: 0
          example: 100
    Usage:
      type: object
      description: Usage and billing information
      properties:
        billing_rule:
          type: string
          description: Billing rule
          enum:
            - per_call
            - per_token
            - per_second
          example: per_call
        credits_reserved:
          type: number
          description: Estimated credits consumption
          minimum: 0
          example: 2.5
        user_group:
          type: string
          description: User group category
          example: default
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        ## All APIs require Bearer Token authentication ##


        **Get API Key:**


        Visit [API Key Management Page](https://evolink.ai/dashboard/keys) to
        get your API Key


        **Add to request header:**

        ```

        Authorization: Bearer YOUR_API_KEY

        ```

````