Anthropic: Claude Opus 5

OpenRouterQuality: 95/100Serving
Try in Playground
✓ Vision✗ Reasoning✓ Tool Use✓ Streaming✓ System Messages

Overview

Anthropic: Claude Opus 5 is a high-performance model from OpenRouter with a 1M context window, supporting vision understanding, function calling. Priced at $0.0050/1K input, $0.025/1K output.

ANT Routing Intelligence

Limited data

Total Requests

1

Success Rate

100%

P50 Latency

11141ms

P95 Latency

11141ms

Selection Rate

0.0%

of eligible requests

Intelligence Score

45/100

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

response = client.chat.completions.create(
    model="anthropic/claude-opus-5",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)