Claude Opus 4.6
Anthropic · Text
Claude Opus 4.6, a high-capability Anthropic model for reasoning and coding. On getmodel it runs through a stable Claude Code Max pool or a low-cost Kiro pool, over both Anthropic-native and OpenAI-compatible endpoints. Claude Opus 4.6 is available on GetModel via an OpenAI-compatible API, billed pay-as-you-go. Get one key and call it from any OpenAI SDK.
Pricing
| Item | Price |
|---|---|
| Input | $0.442 / 1M tokens |
| Output | $2.21 / 1M tokens |
How to call
curl https://getmodel.ai/v1/chat/completions \
-H "Authorization: Bearer $GETMODEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"claude-opus-4-6","messages":[{"role":"user","content":"Hello"}]}' from openai import OpenAI
client = OpenAI(base_url="https://getmodel.ai/v1", api_key="$GETMODEL_API_KEY")
resp = client.chat.completions.create(
model="claude-opus-4-6",
messages=[{"role": "user", "content": "Hello"}],
)
print(resp.choices[0].message.content)