Back to models
provider-prod-1-modrouter-openai-secondary

GPT-5.5

gpt-5.5
provider-prod-1-modrouter-openai-secondary0 contextPriced by generation parameters

GPT-5.5 is OpenAI’s frontier model designed for complex professional workloads, building on GPT-5.4 with stronger reasoning, higher reliability, and improved token efficiency on hard tasks. It features a 1M+ token context window (922K input, 128K output) with support for text and image inputs, enabling large-scale reasoning, coding, and multimodal workflows within a single system.

Total Context0
PricingUsage based

Providers for GPT-5.5

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

provider-prod-1-modrouter-openai-secondary
Total Context0
PricingPriced by generation parameters

Sample code and API for GPT-5.5

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.

Video GenerationAnyInt async media

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

/v1/videos/generations
# 1. Create a generation task and save its ID.
TASK_ID=$(curl 'https://api.anyint.ai/v1/videos/generations' \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -d '{
  "model": "gpt-5.5",
  "prompt": "Describe a calm futuristic city at sunrise.",
  "duration_seconds": 5,
  "aspect_ratio": "16:9"
}' | 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>"