Back to models
openai

OpenAI: GPT Image 2

gpt-image-2
openai400K contextPriced by generation parameters

OpenAI: GPT Image 2 supports Text, Image input and Image output through OpenAI.

Total Context400K
PricingUsage based

Providers for OpenAI: GPT Image 2

AnyInt routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

openai
Total Context400K
PricingPriced by generation parameters

Sample code and API for OpenAI: GPT Image 2

AnyInt generates a quickstart from this model's declared API operations, including complete polling flows for asynchronous media.

Create API key

Choose an operation and language that match this model.

Image GenerationAnyInt async media

Create a generation task, then poll its status for artifacts.

/v1/images/generations
# 1. Create a generation task and save its ID.
TASK_ID=$(curl 'https://api.anyint.ai/v1/images/generations' \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -d '{
  "model": "gpt-image-2",
  "prompt": "Describe a calm futuristic city at sunrise.",
  "size": "1024x1024"
}' | jq -r '.task.id')

# 2. Poll until task.status is completed or failed.
curl 'https://api.anyint.ai/v1/async-tasks/'"$TASK_ID" \
  -H "Authorization: Bearer <YOUR_API_KEY>"