Claudech
ModelsPricingDocs
Sign inGet started
Claudech

Fast, capable AI models with transparent token billing.

No KYC. Crypto payments. OpenAI- and Anthropic-compatible API.

Newsletter · 50k free tokens

Double opt-in. See all rewards.

Product

  • Models
  • Pricing
  • Chat
  • Playground
  • Earn free tokens
  • Affiliate program

Developers

  • Documentation
  • Quickstart
  • API reference
  • Errors & limits

Company

  • Support
  • Security
  • Terms
  • Privacy
© 2026 ClaudechAll systems operational
Get started
  • Introduction
  • Quickstart
  • Authentication
  • Models
Guides
  • Streaming
  • Tool calling & JSON
  • SDKs & libraries
  • Cursor, Claude Code & tools
  • Rate limits
  • Errors
  • Tokens & billing
API reference
  • Chat completions
  • Messages (Anthropic format)
  • Models
  • Account & balance
  • Usage
  • API keys

Models

Every Claudech model is reached through the same endpoint; switching models is a one-word change. This page lists the current catalogue. Prices and limits below are read live from the published catalogue and match what GET /v1/models returns.

Catalogue#

ModelContextMax outputInput / 1MOutput / 1MCached input / 1MPlans
claude-opus-5-5
Fast and capable
256K66K$0.75$3.00$0.075All plans
claude-fable-5-1
Advanced reasoning
256K131K$3.00$9.00$0.150Starter and above
claude-opus-5
Deep reasoning
256K131K$0.90$3.60$0.090All plans
claude-haiku-4-5
Fast responses
128K33K$0.22$1.75$0.022All plans

Prices are per one million tokens in USD and are converted to Claudech tokens at the account rate; see Tokens & billing. Cached input is the discounted rate for prompt tokens served from the prompt cache.

Choosing a model#

  • claude-opus-5-5: the default. Strong reasoning with quick responses. Start here for chat, coding assistants, analysis and agents.
  • claude-fable-5-1: our most capable model for complex, multi-step work where quality matters most: long documents, architecture decisions, difficult synthesis. Available on paid plans.
  • claude-opus-5: extended thinking for hard problems in mathematics, research and intricate debugging. Slower and produces more reasoning tokens; best when correctness beats latency.
  • claude-haiku-4-5: lowest latency and cost for high-volume tasks: classification, extraction, summarisation, routing and simple chat.

Aliases#

Some models have aliases that always point at the latest version (including previous slugs of renamed models, so existing integrations keep working):

AliasResolves to
claud-5-1claude-opus-5-5
claud-5.1claude-opus-5-5
claud-latestclaude-opus-5-5
claude-3-5-sonnetclaude-opus-5-5
claude-sonnetclaude-opus-5-5
claude-sonnet-5claude-opus-5-5
claud-opusclaude-fable-5-1
claude-opusclaude-fable-5-1
claud-reasonclaude-opus-5
claude-3-opusclaude-opus-5
claud-flashclaude-haiku-4-5
claude-haikuclaude-haiku-4-5

Responses always report the canonical slug in model, so you can see what actually served the request.

Capabilities#

ModelStreamingReasoningTool callingJSON modeVision
claude-opus-5-5YesYesYesYesYes
claude-fable-5-1YesYesYesYes—
claude-opus-5YesYesYesYesYes
claude-haiku-4-5Yes—YesYesYes
  • Reasoning models think before answering. Their thinking is returned in reasoning_content when present and counted in completion_tokens_details.reasoning_tokens. Control effort with reasoning_effort; see Tool calling & JSON.
  • Tool calling lets the model request calls to functions you define.
  • JSON mode (response_format: {"type": "json_object"}) guarantees syntactically valid JSON output.
  • Vision models accept image_url content parts (data URLs or public URLs).

Context windows and output limits#

The context window is the total of prompt and completion tokens a model can handle in one request. Your plan may cap it lower: pay-as-you-go and Starter accounts are limited to 128K tokens of context regardless of model; Pro and above get the full window. Requests above the effective limit fail before billing with context_length_exceeded.

Max output is the ceiling for max_tokens. If you omit max_tokens, Claudech applies a sensible per-model default (8K for claude-opus-5-5, 16K for claude-fable-5-1 and claude-opus-5, 4K for claude-haiku-4-5) and never exceeds what fits in the remaining context.

Fallbacks#

For resilience, some models define a fallback of equal or greater capability. If the primary route is unavailable, rate-limited upstream, or times out before producing output, Claudech transparently retries on the fallback. When this happens:

  • model in the response still shows the model you asked for;
  • streaming responses include "fallback_used": true in the final claud billing event;
  • you are billed at the price of the model you requested, never more.

Deprecations#

When a model is scheduled for retirement it is marked deprecated: true in GET /v1/models and on this page, and continues to work until the announced date. Aliases are updated to point at the successor. We announce deprecations by email to all account owners at least 30 days in advance.

Listing models programmatically#

curl https://api.claudech.com/v1/models \
  -H "Authorization: Bearer $CLAUDECH_API_KEY"

See the Models reference for the full response shape.

Previous
Authentication
Next
Streaming