ClaudeStore/Docs
⚠ These docs are a work in progress. Some content may be inaccurate or temporarily AI-generated.

Models

All Claude models on ClaudeStore — Opus 4.7 (1M context), Sonnet 4.6, Haiku 4.5. Prices 30% below Anthropic, stable IDs, short aliases.

ClaudeStore supports the full Claude lineup via api3.claudestore.store: Claude Opus 4.7 (flagship, native 1M token context window), Claude Sonnet 4.6, and Claude Haiku 4.5. Short aliases opus, sonnet, haiku always resolve to the latest version of each tier. Pinned IDs (claude-opus-4.7, claude-sonnet-4.6, claude-haiku-4.5) are recommended for production. Billing rates are set 30% below Anthropic's official token prices.

claudestore --pricingup to −91%
$ Pay once. Get ~11× the Anthropic balance.
Same Anthropic per-token rates. Massive discount on the top-up.
you payAnthropic-equivalent balancediscount
$45$500balance−91%
$90popular$1,000balance−91%
Tokens are billed at Anthropic's exact per-token rates · Balance never expires · No subscription

Recommended Model IDs

Use the stable model IDs listed below in your API requests. These IDs are consistent across both Anthropic and OpenAI-compatible endpoints.

ModelModel IDMax InputMax OutputThinkingVision
Claude Opus 4.7claude-opus-4.71M32KYesYes
Claude Sonnet 4.6claude-sonnet-4.6200K16KYesYes
Claude Haiku 4.5claude-haiku-4.5200K8KNoYes

Legacy model IDs (e.g. claude-sonnet-4.5, claude-opus-4.5, claude-sonnet-4) still resolve for backward compatibility but are not recommended for new integrations.

Short Aliases

For quick experimentation you can use short aliases instead of pinned IDs. Aliases always resolve to the latest version of each tier — convenient for chat clients, risky for production.

AliasResolves toRecommended for
opusclaude-opus-4.7Quick CLI calls, sandboxes
sonnetclaude-sonnet-4.6Quick CLI calls, sandboxes
haikuclaude-haiku-4.5Quick CLI calls, sandboxes
For production deployments use pinned IDs. Aliases will silently upgrade to the next major version (e.g. opusclaude-opus-5.0 when released), which can change behaviour, output length, and pricing without warning.

Long Context (1M tokens)

Claude Opus 4.7 supports a 1 million token context window in beta. Enable it by sending the anthropic-beta header on each request:

Enabling 1M context on Opus 4.7bash
curl https://api3.claudestore.store/v1/messages \
 -H "x-api-key: YOUR_API_KEY" \
 -H "anthropic-version: 2023-06-01" \
 -H "anthropic-beta: context-1m-2025" \
 -H "content-type: application/json" \
 -d '{
 "model": "claude-opus-4.7",
 "max_tokens": 4096,
 "messages": [{"role": "user", "content": "."}]
 }'
1M context is billed at the same per-token rate as standard context — the cap is just larger. Useful for whole-codebase analysis, long-form research, and very large RAG payloads.

ClaudeStore Rates (30% below Anthropic)

ClaudeStore prices every model 30% below Anthropic's official rates. Same models, same speed — just cheaper.

ModelInput / 1MOutput / 1MAnthropic (In/Out)You save
Claude Opus 4.7$3.50$17.50$5 / $2530%
Claude Sonnet 4.6$2.10$10.50$3 / $1530%
Claude Haiku 4.5$0.70$3.50$1 / $530%

Cache pricing: Cache Write = 1.25× input, Cache Read = 0.10× input. Opus 4.7 supports a native 1M-token context at the same per-token rate.

Choosing a Model

  • Opus 4.7 — flagship reasoning, whole-codebase tasks (1M context), long-form research, complex refactors
  • Sonnet 4.6 — best value for daily coding, general tasks
  • Haiku 4.5 — fastest and cheapest, ideal for autocomplete and classification

See Key Controls to restrict which models a specific API key can use.

Listing Models via API

You can retrieve the list of available models programmatically:

GET https://api3.claudestore.store/v1/models

For detailed model information including pricing rates:

GET https://api3.claudestore.store/v1/models/info

Ready to start?

Get API access to all Claude models in under 2 minutes.

View Plans