Back to models
Anthropic

Claude Opus 5

Anthropic 旗舰模型,擅长复杂推理、编程与长链路 agentic 任务

Quick Stats

Context

1000K

Max Output

128K

Provider

Anthropic

Specs

2

Modalities

in textin imagein fileout text

Specs & Platform Price (per 1M tokens)

Quality
Input $5Output $25Cache read $0.5Cache write 5m $6.25Cache write 1h $10
Value
Input $2.5Output $12.5Cache read $0.25Cache write 5m $3.125Cache write 1h $5

Recommended Plan

Claude Opus 5 Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDanthropic/claude-opus-5

cURL

curl https://intertoken.ai/v1/messages \
  -H "x-api-key: $TOKENPORTAL_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "anthropic/claude-opus-5",
    "max_tokens": 1024,
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (anthropic SDK)

import anthropic

client = anthropic.Anthropic(
    base_url="https://intertoken.ai",
    api_key="$TOKENPORTAL_API_KEY",
)

resp = client.messages.create(
    model="anthropic/claude-opus-5",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.content[0].text)

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.