Home/Models/Anthropic/Claude Sonnet 4.6
A

Claude Sonnet 4.6

Input:$2.4/M
Output:$12/M
Claude Sonnet 4.6 is our most capable Sonnet model yet. It’s a full upgrade of the model’s skills across coding, computer use, long-context reasoning, agent planning, knowledge work, and design. Sonnet 4.6 also features a 1M token context window in beta.
New
Commercial Use
Playground
Overview
Features
Pricing
API
Versions

Technical specifications — Claude Sonnet 4.6

ItemClaude Sonnet 4.6 (public summary)
ProviderAnthropic
Model familySonnet (Claude v4.x family) — Sonnet 4.6 variant
Model id (canonical)claude-sonnet-4-6
Input typesText (primary). Limited/secondary support for structured tool/JSON I/O. Not positioned as a primary image-generation model.
Output typesText (natural language, structured JSON, code, and tool-call payloads)
Context window~200,000 tokens (approx.) — designed for multi-document and long-session coherence
Function-calling / tool useYes — structured tool invocation, JSON-constrained outputs, agent-style orchestration supported
MultimodalityLimited — Sonnet is focused on text and structured tool integration; not optimized for image generation.
Release note highlightsStability/improvements in long-context reasoning, lower-latency Sonnet variant tuned for speed–accuracy tradeoffs, improved instruction adherence.

What Is Claude Sonnet 4.6

Claude Sonnet 4.6 is the latest evolution of Anthropic’s Sonnet model line, designed to deliver near-Opus performance at a more accessible price point. It upgrades Sonnet from its earlier 4.5 iteration, bringing stronger instruction following, vastly expanded context support, improved coding and computer use skills, and broader multi-step reasoning abilities — all while maintaining pricing parity with Sonnet 4.5.

Unlike Opus models, which are flagship and optimized for heavy agentic workloads, Sonnet 4.6 targets developers and general knowledge work where broad capability and cost-effectiveness matter.


Main Features of Claude Sonnet 4.6

  • 1M Token Context Window (Beta): Sonnet 4.6 supports up to one million tokens of context in beta — roughly enough to ingest entire codebases, stacks of legal contracts, or multiple academic papers in a single request.
  • Improved Coding Performance: Compared with Sonnet 4.5, Sonnet 4.6 shows significant gains in real-world developer tasks and benchmarks like SWE-Bench Verified (~79.6% score reported), making it suitable for complex coding tasks.
  • Enhanced Computer Use: New levels of competency in tasks involving operating software (spreadsheets, multi-step web form workflows, etc.) approaching human-level performance on OSWorld-Verified tests.
  • Adaptive Thinking: The model incorporates enhanced reasoning strategies and can dynamically allocate internal computation to tackle complex problems step by step.
  • Stronger Instruction Following: Users report more consistency and precision in following detailed requests, with fewer hallucinations and better task completion.
  • Safety & Prompt Injection Resistance: Anthropic has improved robustness over Sonnet 4.5 in resisting prompt injection attacks and similar vulnerabilities.

Benchmark Performance of Claude Sonnet 4.6

EvaluationClaude Sonnet 4.6 (approx.)Notes
SWE-Bench Verified~79.6%Strong coding performance close to Opus-class.
OSWorld-Verified (Computer Use)~72.5%Near human-level task performance; powerful for workflows.
ARC-AGI-2~60.4%Reflects broad reasoning strength.

As a mid-tier model, Sonnet 4.6 narrows the performance gap with Opus models significantly, making it suitable for many tasks previously reserved for flagship class.


Claude Sonnet 4.6 vs Other Claude Models

ModelBest ForKey Differences
Claude Sonnet 4.6Balanced coding, reasoning, large contextsMassive context window beta, cost-efficient, strong for workflow tasks.
Claude Sonnet 4.5Mid-tier general tasksLower benchmarks, smaller context window before 4.6.
Claude Opus 4.6Deep reasoning & agentic codingStronger raw reasoning and agent capabilities; pricier.

Compared to Sonnet 4.5, the 4.6 release boosts contextual understanding and performance on office-style tasks; compared to Opus models, Sonnet sits slightly below in flagship reasoning power but often closer than expected in coding and general task benchmarks.


Limitations of Claude Sonnet 4.6

  • Beta Context Window: The 1M token context is currently in beta — adoption and stability may vary depending on API usage and plan.
  • Latency & Cost: Handling very large contexts increases computational cost and may introduce higher latency on API calls relative to smaller contexts.
  • Benchmark Granularity: While strong in reported tests, Sonnet may lag a bit behind Opus on the most complex reasoning or multidisciplinary benchmarks.

Representative Use Cases of Claude Sonnet 4.6

  1. Large Codebase Assistance: Ideal for ingesting and reasoning about entire software systems, refactorings, or cross-file dependencies.
  2. Document & Research Synthesis: Useful for long-document analysis where context extends beyond typical limits.
  3. Workflow Automation: Solving multi-step computer tasks, such as spreadsheets and form automation.
  4. General Knowledge Work: Suitable for knowledge workers needing reliable instruction following and reasoning without the cost of flagship models.

How to access and use Claude Sonnet 4.6 API

Step 1: Sign Up for API Key

Log in to cometapi.com. If you are not our user yet, please register first. Sign into your CometAPI console. Get the access credential API key of the interface. Click “Add Token” at the API token in the personal center, get the token key: sk-xxxxx and submit.

Step 2: Send Requests to claude-sonnet-4-6 API

Select the “claude-opus-4-6” endpoint to send the API request and set the request body. The request method and request body are obtained from our website API doc. Our website also provides Apifox test for your convenience. Replace <YOUR_API_KEY> with your actual CometAPI key from your account. Where to call it:  Anthropic Messages format and Chat format.

Insert your question or request into the content field—this is what the model will respond to . Process the API response to get the generated answer.

Step 3: Retrieve and Verify Results

Process the API response to get the generated answer. After processing, the API responds with the task status and output data.

Features for Claude Sonnet 4.6

Explore the key features of Claude Sonnet 4.6, designed to enhance performance and usability. Discover how these capabilities can benefit your projects and improve user experience.

Pricing for Claude Sonnet 4.6

Explore competitive pricing for Claude Sonnet 4.6, designed to fit various budgets and usage needs. Our flexible plans ensure you only pay for what you use, making it easy to scale as your requirements grow. Discover how Claude Sonnet 4.6 can enhance your projects while keeping costs manageable.
Comet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
Input:$2.4/M
Output:$12/M
Input:$3/M
Output:$15/M
-20%

Sample code and API for Claude Sonnet 4.6

Access comprehensive sample code and API resources for Claude Sonnet 4.6 to streamline your integration process. Our detailed documentation provides step-by-step guidance, helping you leverage the full potential of Claude Sonnet 4.6 in your projects.
Python
JavaScript
Curl
import anthropic
import os

# Get your CometAPI key from https://api.cometapi.com/console/token, and paste it here
COMETAPI_KEY = os.environ.get("COMETAPI_KEY") or "<YOUR_COMETAPI_KEY>"
BASE_URL = "https://api.cometapi.com"

message = anthropic.Anthropic(
    base_url=BASE_URL,
    api_key=COMETAPI_KEY,
)
messages = message.messages.create(
    model="claude-sonnet-4-6",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello, Claude"}],
)
print(messages.content[0].text)

Versions of Claude Sonnet 4.6

The reason Claude Sonnet 4.6 has multiple snapshots may include potential factors such as variations in output after updates requiring older snapshots for consistency, providing developers a transition period for adaptation and migration, and different snapshots corresponding to global or regional endpoints to optimize user experience. For detailed differences between versions, please refer to the official documentation.
version
claude-sonnet-4-6
claude-sonnet-4-6-thinking

More Models