Back to Models
Anthropic
Claude Sonnet 4.6
Claude Sonnet 4.6 from Anthropic — 200K-token context, multimodal vision, function calling.
Try in PlaygroundContext Window
200.0K
tokensHow much text the model can consider at once — your prompt plus its reply.
Max Output
8K
tokensThe most tokens the model can generate in a single response.
Input
$3.00
per 1M tokensCost per 1 million input tokens you send to the model.
Output
$15.00
per 1M tokensCost per 1 million output tokens the model generates.
Provider & Routing
Maker
Anthropic
Served on
Anthropic
NemoRouter is a managed gateway — one API key, no provider accounts to set up. We route your traffic to this model's hosting cloud and fail over automatically if it degrades.
Capabilities
Vision
Function Calling
Streaming
JSON Mode
System Prompt
Tool Use
More from Anthropic
Quick Start
curl
# Cache: enabled (org default). Pass nemo_cache: false to skip.
# Use -i to see cost + guardrails in response headers:
# x-nemo-request-cost: 0.00347
# x-nemo-guardrails-applied: pii-detection,prompt-injection
# nemo_cache: pass "nemo_cache": false in body to skip cache
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-d '{
"model": "claude-sonnet-4-6",
"temperature": 1,
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "Hello! What models do you support?"}
]
}'Replace sk-nemo-... with your NemoRouter API key. Use claude-sonnet-4-6 as the model identifier.
Try in Playground
Paste your NemoRouter virtual key and send a real request to Claude Sonnet 4.6 right now — no signup required.
Test it
Prompt
cURL
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"claude-sonnet-4-6","messages":[{"role":"user","content":"Hello!"}]}'