Claude Opus 4.7 Now Available on TheRouter
Anthropic released Claude Opus 4.7 yesterday — their most capable model to date. It's already live on TheRouter via both Anthropic API and AWS Bedrock, with automatic failover between providers.
TheRouter adds day-one support for Claude Opus 4.7, Anthropic's most capable model released April 16 2026. Available via Anthropic API and AWS Bedrock with automatic failover. Model ID: anthropic/claude-opus-4.7. Pricing: $5/$25 per MTok input/output, same as Opus 4.6. Key improvements: 13% coding lift, tripled image resolution to 2576px, new xhigh effort level, task budgets for agents, 128K max output tokens.
What's New in Opus 4.7
- 13% coding improvement — 3x more production tasks resolved on Anthropic's 93-task benchmark. Solved 4 tasks neither Opus 4.6 nor Sonnet 4.6 could handle.
- Tripled image resolution — max 2576px / 3.75 megapixels (up from ~1,600px). Better for diagrams, screenshots, and document analysis.
- New xhigh effort level — sits between
highandmax, giving finer control over reasoning depth vs. latency. - Task budgets (public beta) — set a hard token ceiling for autonomous agent loops. The model sees a running countdown and prioritizes work accordingly.
- 128K max output — same as Opus 4.6, with 1M context window.
Pricing
Per-token rates are unchanged from Opus 4.6:
| Tier | Input | Output | Cache Read |
|---|---|---|---|
| Standard | $5/MTok | $25/MTok | $0.50/MTok |
| Long context (>200K) | $10/MTok | $37.50/MTok | — |
Note: Opus 4.7 ships with a new tokenizer that may produce up to ~35% more tokens for the same input text. Per-token rates are unchanged, but actual cost per request may increase.
How to Use It
Use the standard model name anthropic/claude-opus-4.7 — TheRouter automatically routes to the best available provider:
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THE_ROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-opus-4.7",
"messages": [{"role": "user", "content": "Refactor this module for better testability"}],
"max_tokens": 4096
}'Existing aliases also work — claude-opus-4-7 and claude-3-opus-20240229 both resolve to Opus 4.7 automatically.
Provider Availability
| Provider | Upstream Model | Status |
|---|---|---|
| Anthropic API | claude-opus-4-7 | Live |
| AWS Bedrock (us-east-2) | us.anthropic.claude-opus-4-7-v1 | Live |
TheRouter picks the optimal provider per request. Both providers support streaming, tools, vision, and extended thinking.
Getting Started
Already on TheRouter? Just change the model name to anthropic/claude-opus-4.7 — no other changes needed.
Questions? Reach out on GitHub.