Skip to main content
GPT Image 2 Async

GPT Image 2 Async

ReachAPI's asynchronous GPT Image 2 workflow for task-based image generation and editing with callback-ready results.

Async Image TaskImage GenerationImage Editing

Execution

Async task

Submit once, then poll or receive a callback

Input Types

Text + reference images

Use `image_urls` for image editing

Result

Image URL

Completed outputs are returned in `data[].url`

Model Code

gpt-image-2-async

Use this code only with the async image API

Model Codegpt-image-2-async

Playground

gpt-image-2-async
Reference Images0/14

Click or drag

Resolution (sent to backend)

Aspect Ratio (sent to backend)

Quality (sent to backend)

Output format (sent to backend)

No output yet

Pricing

Quality1k2k4k
low$0.009$0.01010% off$0.018$0.02010% off$0.027$0.03010% off
medium$0.054$0.06010% off$0.108$0.12010% off$0.162$0.18010% off
high$0.198$0.22010% off$0.396$0.44010% off$0.594$0.66010% off

low 1k · $0.009 · per image

low 2k · $0.018 · per image

low 4k · $0.027 · per image

medium 1k · $0.054 · per image

medium 2k · $0.108 · per image

medium 4k · $0.162 · per image

high 1k · $0.198 · per image

high 2k · $0.396 · per image

high 4k · $0.594 · per image

README

GPT Image 2 Async exposes GPT Image 2 through ReachAPI's async image task interface, designed for queued generation, task polling, terminal callbacks, and final image URLs returned in `data[].url`.
  • GPT Image 2 Async is the task-based ReachAPI entry point for GPT Image 2 image generation and editing workflows.
  • Use this model when your integration needs a task ID, status polling through `/v1/tasks/{task_id}`, terminal callbacks, or hosted image URLs in `data[].url`.
  • For OpenAI-compatible `/v1/images/generations` and `/v1/images/edits` calls, use the separate `gpt-image-2` model page and API documentation.

API

Use the API docs for request format, parameters, and integration details.

ReachAPI's asynchronous GPT Image 2 workflow for task-based image generation and editing with callback-ready results.

Model Code

gpt-image-2-async

View API Docs

API

Endpoint

POST /v1/images/create

Authentication

Authorization: Bearer YOUR_REACH_API_KEY
Content-Type: application/json

Example

curl -X POST "https://direct.reachapi.ai/v1/images/create" \
  -H "Authorization: Bearer YOUR_REACH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-image-2-async",
    "input": {
      "prompt": "An editorial fashion photo of a silver handbag on a reflective pedestal, soft studio lighting",
      "resolution": "4k",
      "aspect_ratio": "2:3",
      "quality": "high",
      "output_format": "png"
    }
  }'