Model overview
Text generationPremiumReasoningClaude Opus 4.6 is the premium Claude model for high-complexity reasoning, long-running agentic tasks, codebase work, and demanding knowledge workflows.
Company: AnthropicProvider: AWS Bedrock
Model capabilities
Input modalityT
Output modalityT
Model experience✓
Function calling✓
Structured output✓
Web search×
Context cache✓
Batch inference✓
Fine-tuning×
Model pricing
Input (US regional profile)$5.50/1M tokens
Batch input (US regional profile)$2.75/1M tokens
Cache hit input (US regional profile)$0.55/1M tokens
Output (US regional profile)$27.50/1M tokens
Batch output (US regional profile)$13.75/1M tokens
Rate limits and context
Context length1M
Maximum output length128K
API reference
EndpointPOST /v1/chat/completions
SDKOpenAI-compatible
API code examples
from openai import OpenAI client = OpenAI( api_key="$WLROUTER_API_KEY", base_url="https://api.wlrouter.com/v1" ) response = client.chat.completions.create( model="anthropic.claude-opus-4.6", messages=[ {"role": "user", "content": "Reply with one short sentence."} ], max_tokens=32 ) print(response.choices[0].message.content)