All models

Claude Sonnet 4.6

Anthropic's balanced workhorse model. Long context, strong tool use, and the best price-to-capability ratio in the Claude family.

Pricing

Input
$3 / 1M
Output
$15 / 1M

Billed per token. No subscription, no minimums.

Specs

Context window
200,000 tokens
Max output
64,000 tokens

Capabilities

chatvisiontool-usereasoning

Modalities

textimage

About Claude Sonnet 4.6

Claude Sonnet 4.6 is Anthropic's general-purpose model, sitting in the middle of the Claude family between Haiku and Opus. It's the default choice for production workloads that need strong reasoning and instruction following without paying Opus prices. Sonnet handles long-context tasks comfortably, calls tools reliably, and is the model most Anthropic API traffic runs through.

It's a good fit for backend agents, document analysis, code editing, structured extraction, and chat applications where Haiku is too thin and Opus is overkill. The 200K-token context window means you rarely have to think about chunking. Native vision input means screenshots, charts and document images work without a separate pipeline.

Try it

Call claude-sonnet-4-6 through Troviale with your existing OpenAI SDK — just swap the base URL and key.

client = OpenAI(
  base_url="https://api.troviale.com/v1",
  api_key="YOUR_TROVIALE_KEY",
)

client.chat.completions.create(
  model="claude-sonnet-4-6",
  messages=[{"role": "user", "content": "Hello"}],
)

Pricing: input $3 / 1M tokens · output $15 / 1M tokens. Prices shown as published — actual billing reflects token counts returned by the provider.