Claude Opus 5.5 from Anthropic is now available on AI Gateway. It is a step-change improvement over Opus 5, with its biggest gains in agentic coding, long-running agent tasks, and knowledge work. Anthropic cites that Opus 5.5 performs at the level of Fable 5.1, but ~30% faster and ~40% cheaper than Opus 5 per task.
Opus 5.5 is also a better collaborator over long runs. It reports back in plain language on what it did, what it found, and what it needs next, making it easier to supervise work that spans many steps or takes place over a longer period.
Opus 5.5 includes two API changes that can turn previously valid requests into HTTP 400 errors:
Thinking is always adaptive. Requests that disable thinking or set a fixed thinking budget are rejected. The model decides how much to think for each request. Use effort and prompting to steer its thinking behavior.
Forced tool use is retired. Requests cannot require a tool call or force a specific tool. Prompt the model toward the tool, then catch and retry misses in your harness. If you previously forced a tool call to return JSON, use structured outputs instead.
Use anthropic/claude-opus-5.5 across the AI SDK, OpenAI-compatible Chat Completions API, Anthropic Messages API, and coding agents connected to AI Gateway. You can also enable fast mode with the gateway speed option r anthropic/claude-opus-5.5-fast. The model has a 1M-token context window, returns up to 128K tokens, and has a June 2026 knowledge cutoff.
import { streamText } from 'ai';
const result = streamText({ model: 'anthropic/claude-opus-5.5', reasoning: 'medium', prompt: 'Investigate the failing tests, implement a fix, and report what changed.', providerOptions: { gateway: { speed: 'fast', inferenceRegion: { scope: 'zone', geoRegion: 'us' }, }, },});Copy link to headingRegional inference and Zero Data Retention
Regional inference and Zero Data Retention are opt-in request controls. This example pins inference to the US and ZDR:
const regionalResult = streamText({ model: 'anthropic/claude-opus-5.5', prompt: 'Summarize this internal document.', providerOptions: { gateway: { inferenceRegion: { scope: 'zone', geoRegion: 'us' }, zeroDataRetention: true, }, },});Copy link to headingUse Opus 5.5 in coding agents
Install the latest Vercel CLI and connect your supported coding agents to AI Gateway:
npm i -g vercel@latestvercel ai-gateway setupThen select anthropic/claude-opus-5.5 in the agent. In Claude Code, use /fast to toggle fast mode for the session. See the coding agents guide for other agent-specific instructions.
AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in custom reporting, budgets for API keys, routing rules, and more.
AI Gateway reflects provider pricing with no markup and does not charge a platform fee on inference, including on Bring Your Own Key (BYOK) requests.
Try Claude Opus 5.5 in the model playground, or view all language models available on AI Gateway.