Claude Opus 4.8 is Anthropic's most capable generally available model in the Opus family. It supports text, image, and file inputs with text output, with reasoning support and a 1M-token...
At a glance
- Context window
- 1Mtokens
- Max output
- 128Ktokens
- Knowledge to
- —
- Released
- 2026
Capabilities
Benchmarks
- Intelligence index
- 42
- Coding index
- 74
- Agentic index
- 43
Design Arena
| Category | Elo | Win rate |
|---|---|---|
| models · asciiart | 1,292 | 62.3 |
| models · gamedev | 1,279 | 53.7 |
| models · uicomponent | 1,270 | 54.2 |
| models · website | 1,267 | 53.5 |
| models · codecategories | 1,266 | 53.3 |
| models · dataviz | 1,254 | 53.7 |
| models · 3d | 1,251 | 52.8 |
| models · svg | 1,213 | 52.7 |
Standard evaluations
| Benchmark | Score | Tasks |
|---|---|---|
| gpqa_diamond | 0.9 | 1,188 |
| tau_bench_verified_airline | 0.76 | 300 |
Source: Artificial Analysis, Design Arena · as of Sep 16, 2026
Performance
Uptime on IranRouter
5.5%
Reference uptime
100%
Median latency
1,849 ms
Throughput
59.9 tok/s
IranRouter uptime comes from our own automated probes; the reference figures are daily measurements of this model's upstream routes. Each card shows a 30-day average, and a day without data stays empty.
Popularity
- Current rank
- #42
- Rank change, 7 days
- +1
Daily tokens · 90 days
156.9B
Ranked by daily token volume across the global model market; the figure above the chart is the daily average.
Supported parameters
Parameters this model accepts; anything else is ignored.
Quick start
from openai import OpenAI
client = OpenAI(
api_key="ir-...",
base_url="https://iranrouter.com/v1",
)
resp = client.chat.completions.create(
model="anthropic/claude-opus-4.8",
messages=[{"role": "user", "content": "سلام!"}],
)
print(resp.choices[0].message.content)Only base_url and the key change; the rest of your code stays as it is.