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.
Total Requests
1
Success Rate
100%
P50 Latency
11141ms
P95 Latency
11141ms
Selection Rate
0.0%
of eligible requests
Intelligence Score
45/100
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)