Skip to content
Anthropicclaude-opus-5

Claude Opus 5

State-of-the-art agentic coding for enterprise work.

Opus 5 pairs state-of-the-art reasoning with strong agentic capability, built for complex coding and the kind of enterprise work that runs across many steps.

  • Agentic coding
  • Enterprise work
  • Complex reasoning

Model details

Context window
1M tokens
Max output
128K tokens
Input
Text, images
Output
Text
Capabilities
Reasoning, Vision, Tool calling, Streaming
Interfaces
OpenAI-style Chat Completions, Anthropic-style Messages, OpenAI-style Responses

Pricing

Per 1M tokens. The Inferray price is what you are charged — no gateway fee is added on top of it.

Claude Opus 5 pricing: the provider's list price and the Inferray price for each.
MetricList priceYou pay
Input$5$3.75
Cached input$0.50$0.38
Output$25$18.75

Why teams pick it

  • State-of-the-art reasoning and agentic capability
  • Built for complex, multi-step coding work
  • 1M-token context for whole-repo and long-document work

Call Claude Opus 5

Claude Opus 5 answers on any of the APIs below — pick the one your code already speaks and just swap in your Inferray key.

/v1/chat/completionsOpenAI-style Chat Completions · openai SDK or plain HTTP
curl https://api.inferray.com/v1/chat/completions \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-5",
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/messagesAnthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP
curl https://api.inferray.com/v1/messages \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-5",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "ship it"}]
  }'
/v1/responsesOpenAI-style Responses · openai SDK or plain HTTP
curl https://api.inferray.com/v1/responses \
  -H "Authorization: Bearer inferray_..." \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-5",
    "input": "ship it"
  }'

More from Anthropic