Anthropic's latest flagship Opus model, with a 1M-token context window by default and 128K max output tokens. Same pricing as Opus 4.5โ4.8 ($5/$25 per M tokens) with prompt caching (read $0.50/M, write $6.25/M) and web search. Compatible with the Anthropic Messages and OpenAI Chat Completions formats.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 9,290 | $6.19 |
| Output Tokens | 46,450 | $30.97 |
| Cached Tokens | 929 | $0.62 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-5",
"messages": [
{
"role": "system",
"content": "You are a principal research analyst. Provide rigorous, source-aware analysis."
},
{
"role": "user",
"content": "Given this corpus of quarterly reports, identify the three biggest emerging risks and quantify their exposure."
}
],
"max_tokens": 8000
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects (OpenAI format) |
max_tokens | integer | No | 4096 | Maximum tokens in response (up to 128000) |
stream | boolean | No | false | Enable Server-Sent Events streaming |
Deep multi-step analysis over large documents with Claude Opus 5
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-5",
"messages": [
{
"role": "system",
"content": "You are a principal research analyst. Provide rigorous, source-aware analysis."
},
{
"role": "user",
"content": "Given this corpus of quarterly reports, identify the three biggest emerging risks and quantify their exposure."
}
],
"max_tokens": 8000
}'Generate production-ready code with full reasoning
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-opus-5",
"messages": [
{
"role": "system",
"content": "You are a senior software engineer. Write clean, well-tested, production code."
},
{
"role": "user",
"content": "Implement an idempotent payment reconciliation worker in Python with retries and unit tests."
}
],
"max_tokens": 6000
}'POST /llm/anthropic/v1/messages