claude-opus-5
NixAPI price, from
USD per 1M tokens · via group Kiro-Claude-1 · Official list price $5 / $25Save 85%
About claude-opus-5
Claude Opus 5, the default model for Claude Max and the most powerful model for Claude Pro, is a thoughtful, proactive, cost-efficient agentic model that delivers nearly the cutting-edge intelligence of flagship Claude Fable 5 at half the cost and sets new state-of-the-art standards for coding and professional knowledge work.
Price by routing group
Pick a group in the console when you create a key. Status is live from the router. Live status by group →
| Group | Group status | Model status | Multiplier | Input | Output | Cache read | Cache write |
|---|---|---|---|---|---|---|---|
Kiro-Claude-1 | … | ×0.1491 | $0.7456 | $3.728 | $0.0746 | — | |
Claude-Code-1 | … | ×0.2982 | $1.491 | $7.456 | $0.1491 | — | |
Claude-Code-2 | … | ×0.4971 | $2.485 | $12.427 | $0.2485 | — | |
AWS-Bedrock-2 | … | ×0.9941 | $4.971 | $24.853 | $0.4971 | — | |
AWS-Claude-2 | … | ×1.4912 | $7.456 | $37.28 | $0.7456 | — | |
AWS-Claude-3 | … | ×1.859 | $9.295 | $46.475 | $0.9295 | — | |
Anthropic-Claude-1 | … | ×1.859 | $9.295 | $46.475 | $0.9295 | — |
USD per 1M tokens
Supported endpoints
Call claude-opus-5 in one request
Works with the OpenAI SDK and any OpenAI-compatible client. Replace the key with your own.
curl https://api.nixapi.com/v1/chat/completions \
-H "Authorization: Bearer $NIXAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-opus-5",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(base_url="https://api.nixapi.com/v1", api_key="sk-…")
resp = client.chat.completions.create(
model="claude-opus-5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)import OpenAI from 'openai';
const client = new OpenAI({ baseURL: 'https://api.nixapi.com/v1', apiKey: process.env.NIXAPI_KEY });
const resp = await client.chat.completions.create({
model: "claude-opus-5",
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(resp.choices[0].message.content);Questions about claude-opus-5
How much does claude-opus-5 cost on NixAPI?
From $0.7456 per 1M input tokens and $3.728 per 1M output tokens in the Kiro-Claude-1 group, about 85% below the official list price. Prices are pay-as-you-go in USD with no monthly minimum.
How do I call claude-opus-5?
Point any OpenAI-compatible client at https://api.nixapi.com/v1, use your NixAPI key and set the model to "claude-opus-5".
Which routing groups serve claude-opus-5?
claude-opus-5 is available in 7 routing groups: Kiro-Claude-1, Claude-Code-1, Claude-Code-2, AWS-Bedrock-2, AWS-Claude-2, AWS-Claude-3, Anthropic-Claude-1. The lowest price is in Kiro-Claude-1.