Models
All Claude models on ClaudeStore — Opus 4.7/4.6 (1M context), Sonnet 4.6, Haiku 4.5. Prices 30% below Anthropic, stable IDs, short aliases.
ClaudeStore supports the full Claude lineup via api2.claudestore.store: Claude Opus 4.7 (flagship, 200K standard context, 1M token beta context via anthropic-beta: context-1m-2025), Claude Opus 4.6, 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.6, claude-sonnet-4.6, claude-haiku-4.5) are recommended for production. Billing rates are set 30% below Anthropic's official token prices.
| model | ClaudeStore (in/out per 1M) | Anthropic |
|---|---|---|
| haiku-4.5 | $0.70 / $3.50 | $1 / $5 |
| sonnet-4.6 | $2.10 / $10.50 | $3 / $15 |
| opus-4.6/4.7 | $3.50 / $17.50 | $5 / $25 |
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.
| Model | Model ID | Max Input | Max Output | Thinking | Vision |
|---|---|---|---|---|---|
| Claude Opus 4.7 | claude-opus-4.7 | 200K (1M beta) | 32K | Yes | Yes |
| Claude Opus 4.6 | claude-opus-4.6 | 200K | 32K | Yes | Yes |
| Claude Sonnet 4.6 | claude-sonnet-4.6 | 200K | 16K | Yes | Yes |
| Claude Haiku 4.5 | claude-haiku-4.5 | 200K | 8K | No | Yes |
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.
| Alias | Resolves to | Recommended for |
|---|---|---|
| opus | claude-opus-4.6 | Quick CLI calls, sandboxes |
| sonnet | claude-sonnet-4.6 | Quick CLI calls, sandboxes |
| haiku | claude-haiku-4.5 | Quick CLI calls, sandboxes |
opus → claude-opus-5.0 when released), which can change behaviour, output length, and pricing without warning.Long Context (1M tokens)
Claude Opus 4.6 supports a 1 million token context window in beta. Enable it by sending the anthropic-beta header on each request:
curl https://api2.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.6",
"max_tokens": 4096,
"messages": [{"role": "user", "content": "."}]
}'ClaudeStore Rates (30% below Anthropic)
ClaudeStore prices every model 30% below Anthropic's official rates. Same models, same speed — just cheaper.
| Model | Input / 1M | Output / 1M | Anthropic (In/Out) | You save |
|---|---|---|---|---|
| Claude Opus 4.7 | $3.50 | $17.50 | $5 / $25 | 30% |
| Claude Opus 4.6 | $3.50 | $17.50 | $5 / $25 | 30% |
| Claude Sonnet 4.6 | $2.10 | $10.50 | $3 / $15 | 30% |
| Claude Haiku 4.5 | $0.70 | $3.50 | $1 / $5 | 30% |
Cache pricing: Cache Write = 1.25× input, Cache Read = 0.10× input. 1M-context requests use the same per-token rate as 200K-context. Opus 4.7 pricing matches Opus 4.6 at launch and is subject to change.
Choosing a Model
- Opus 4.7 — flagship reasoning, whole-codebase tasks (1M context), long-form research
- Opus 4.6 — heavy reasoning at 200K, 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:
For detailed model information including pricing rates: