Claude AI Pricing
Claude's pricing varies depending on how you access it — the consumer product, the API, or the enterprise plan. Getting the pricing right matters for both budgeting and architecture decisions: the right model tier at the right volume can mean a 10-100x cost difference. This guide covers Claude pricing for all access methods and how to optimise costs.
Claude.ai Pricing (Consumer and Team Plans)
Free plan: Access to Claude Sonnet with usage limits. Suitable for light personal use and exploration. Limits mean you'll encounter "You've reached the usage limit" messages during heavy use.
Claude Pro ($20/month per user): Unlimited Claude Sonnet access, access to Claude Opus (with usage limits), file uploads, project organisation, and priority access during high-demand periods. The right choice for individual professionals using Claude regularly.
Claude Team (pricing varies, ~$25-30/month per user): Collaborative features, shared projects, admin controls, and higher usage limits for all team members. Suitable for small teams that want centralised management without a full enterprise setup.
Claude Enterprise (custom pricing): Enterprise SSO, admin controls, enhanced privacy commitments, highest usage limits, and a dedicated customer success team. For organisations deploying Claude across hundreds or thousands of employees.
For most individual professionals and small teams: start with the Free tier to evaluate, upgrade to Pro when usage limits become a constraint.
API Pricing
The Anthropic API is priced per token — you pay for what you use, with no monthly minimum beyond what you consume. This makes it ideal for businesses building Claude-powered applications and automation.
Claude Haiku (fast, affordable):
- Input: ~$0.25 per 1M tokens
- Output: ~$1.25 per 1M tokens
- Best for: high-volume, simpler tasks (classification, extraction, summarisation)
Claude Sonnet (balanced):
- Input: ~$3.00 per 1M tokens
- Output: ~$15.00 per 1M tokens
- Best for: most business automation tasks, complex generation, analysis
Claude Opus (premium):
- Input: ~$15.00 per 1M tokens
- Output: ~$75.00 per 1M tokens
- Best for: hardest tasks where quality is paramount
Note: check anthropic.com for current rates — prices have been declining as models improve.
What Tokens Are (And How to Calculate Costs)
A token is approximately 4 characters or 0.75 words in English. 1,000 tokens ≈ 750 words ≈ 3 pages of text.
Cost examples:
- Classifying a 100-word support ticket (150 tokens in, 50 tokens out) on Haiku: ~$0.00005 ($5 per 100,000 tickets)
- Generating a 500-word email draft (200 tokens in, 375 tokens out) on Sonnet: ~$0.0062 ($62 per 10,000 emails)
- Analysing a 5,000-word contract (3,750 tokens in, 500 tokens out) on Sonnet: ~$0.019 ($190 for 10,000 contracts)
For most businesses, AI API costs are a small fraction of the value delivered. Processing 10,000 support tickets on Haiku costs ~$5. If each ticket saves 5 minutes of agent time at $30/hour, that's $25,000 in value — a 5,000x ROI.
Prompt Caching (Cost Reduction)
Anthropic offers prompt caching — if your system prompt is long and stable, it can be cached so you're charged at a reduced rate for repeated use of the same content.
Cache write cost: 25% more than standard input tokens (one-time cost to cache) Cache hit cost: 10% of standard input token cost (90% reduction on cached tokens) Cache lifetime: 5 minutes (refreshed on each use within the window)
For automation workflows with long system prompts used repeatedly, prompt caching delivers 80-90% cost reduction on the system prompt tokens. A 2,000-token system prompt called 10,000 times per day: uncached = $15/day; cached = ~$1.50/day.
Cost Optimisation Strategies
Right-size models: Use Haiku for everything where Haiku quality is acceptable. This is the single biggest cost reduction lever.
Minimise prompt length: Audit system prompts for redundancy. Remove any instruction that doesn't change Claude's behaviour. A 500-token system prompt is half the cost of a 1,000-token system prompt per API call.
Use prompt caching: For high-volume workflows with stable system prompts, enable caching.
Set appropriate max_tokens: If your output is always under 200 tokens, set max_tokens to 300. You only pay for tokens generated, but setting a lower limit prevents accidental over-generation.
Batch API for non-time-sensitive work: OpenAI's batch API (and Anthropic's equivalent where available) offers 50% cost reduction for async processing.
Recommended Tools
- Anthropic API — Cost monitoring in the console
- Claude.ai — Individual and team plans
- n8n — Implement model selection logic to optimise API costs
- Make.com — Route different task types to different Claude model tiers
“Claude pricing has been declining consistently. The real question isn't cost — it's value. An automation that delivers $10,000 in value for $50/month in API costs is worth building regardless of the absolute price.”
Related articles
Building a 24/7 customer support agent with Claude and n8n
A production teardown — routing, retrieval, escalation, and the guardrails that keep it safe.
Prompt engineering for reliable automation workflows
Prompts that survive contact with messy production data — structure, schemas, and fallbacks.
Claude tool use: building agents that take real actions
Wiring Claude to your stack safely — schemas, confirmation steps, and audit trails.