Introduction: The "Unlimited" AI Subscription That Wasn't
You signed up for a ₹1,600 monthly plan, thinking you had all the AI you could eat. But after a week of coding, you got a notification: quota exhausted. Another ₹8,000 spent. What went wrong?
You are not alone. Across India, developers, startups and IT departments are discovering that the math of AI has changed. The era of predictable, flat‑fee AI subscriptions is ending. Anthropic – the company behind Claude – has quietly re‑engineered its pricing, and the results are shocking some users.
Read also: A Hotel Check‑In System Left 1 Million Passports and Driver’s Licenses Open for Anyone to See
One developer using Claude Code watched his monthly bill jump from around $60 to over $200 without changing his usage pattern. Another reported their Pro Max plan lasted just 15 minutes before the quota was wiped out by a single misconfigured setting. There are even reports of a developer who claims his theoretical cost could have ballooned 26,000 times due to compounding bugs – all without him ever knowing.
This is not a bug. It is a deliberate shift. And if you are building products, automating workflows, or running a business on Claude, you need to understand what changed – and how to protect your budget.
Read also: WhatsApp Now Has an 'Incognito Mode' for AI. Finally, You Can Ask That Question.
What Changed: From "All You Can Eat" to "Pay Per Bite"
For the longest time, AI pricing was simple. You paid a monthly fee – $20 for ChatGPT Plus and $20 for Claude Pro – and you got a generous message allowance. Power users paid a bit more for higher tiers. The bill was predictable. The mental math was easy.
Not anymore.
Anthropic has moved its enterprise and developer billing from fixed per‑seat subscriptions to strict per‑token pricing. This means you are charged for every single word you send to the AI and every word the AI sends back. The company has also eliminated the 10‑15% volume discounts that large users previously enjoyed and introduced mandatory monthly spending commitments that lock you into minimum bill amounts.
Read also: Your Private Instagram Chats Are No More Private: Meta Pulls the Plug on End-to-End Encryption From May 8
The new system is usage‑based. Think of it like your mobile phone plan. Earlier, you had an unlimited 5G plan – predictable, worry‑free. Now, you have moved to a pay‑per‑megabyte plan. Yes, you can send more data, but every WhatsApp video, every Instagram reel, every background update now has a price tag.
The same applies to third‑party tools. Anthropic has clarified that subscription quotas will only cover official products. If you use Claude through frameworks like OpenClaw, you must now pay separately through the API at retail rates. For some users, this increased their effective costs by as much as 50 times.
OpenClaw founder Peter Steinberger put it bluntly: first they copy the features from open source into their own closed tools, then they lock the open source community out.
Read also: Runway Started By Helping Filmmakers. Now It Wants To Beat Google At AI.The Hidden Leak: Cache Busting and Silent Changes
If the headline price increase wasn't painful enough, the real bleeding happens through a hidden mechanism: prompt caching.
Caching is like the AI's short‑term memory. When you have a long conversation or a large codebase, Claude stores the context in a cache so it doesn't have to re‑read everything every time. This saves you money – cache reads are charged at just one‑tenth the price of regular tokens. It also makes the AI much faster.
But there is a catch. The cache has a time to live (TTL) – a lifespan. In March 2026, Anthropic silently changed this TTL from a generous 1 hour down to just 5 minutes.
Think of it like this. You are cooking a complex meal. You have all your ingredients laid out on the counter – ready to use. If you take a coffee break for more than 5 minutes, someone will clear the counter. You come back, and you have to retrieve every ingredient from the fridge again. Every single time. That is your AI's cache expiring. And you pay for retrieving those ingredients every single time.
Read also: Notion Just Turned Your Workspace Into a Hub for AI Agents. Here's How It Works.
A developer on GitHub discovered this the hard way. He had never hit his quota limits before March 2026. After the silent change, he started hitting them regularly – without changing his usage patterns. Another user found that 54% of his conversation turns happened after a gap of more than 5 minutes, meaning his cache was dead for more than half the conversation. His effective cost multiplied by 10 for no additional value.
This issue is compounded by how third‑party tools interact with Claude. Some frameworks, in an effort to manage massive contexts, compress tool results. This inadvertently breaks the caching mechanism, causing the model to re‑read the entire history repeatedly, further driving up costs. A GitHub issue revealed a bug where the CLI mutated historical tool results, permanently breaking the cache for the entire session.
Read also: NVIDIA CEO Joins Trump’s China Mission - A Wake-Up Call for India’s Semiconductor Dreams
Even when the cache works, the math is tricky. While cache reads are cheap, creating the cache – the "cache write" – is more expensive than a regular token. With a 5‑minute TTL, you are paying that higher write cost constantly. One analysis showed that a 5‑minute cache costs 1.25 times the base price, while a 1‑hour cache costs 2 times the base price. The shorter cache is cheaper to create, but it expires constantly. You are paying more often for smaller windows.
All these factors combine into a perfect storm: pricing model changes, silent cache tweaks, and compounding bugs are turning what seemed like an affordable AI assistant into a very expensive and unpredictable line item.
Read also: Airbnb CEO Brian Chesky says AI writes 60 percent of new code and pure people managers may not survive the AI era.What This Means for Indian Developers and Businesses
India is Anthropic's second‑largest global market. The company has a dedicated Bengaluru office and major partnerships with Indian enterprises. Air India is using Claude Code to build software faster. Cred has used it to double feature delivery speed and improve test coverage. Cognizant is rolling it out to 350,000 employees. For every one of these companies, and for the thousands of startups, freelancers and IT teams using Claude, the new pricing model is a major challenge.
IT companies, which are large consumers of AI as they restructure their business, are facing additional margin pressure. For a small Indian startup, a jump from a predictable ₹1,600 monthly bill to a chaotic ₹80,000 bill could be fatal. For a freelancer, it could erase an entire day's earnings.
The shift also raises concerns about vendor lock‑in. As AI becomes more expensive and usage‑based, enterprises are beginning to look at open‑source LLMs, self‑hosted AI, and hybrid architectures as more cost‑effective alternatives.
Read also: The AI Legal Services Industry Is Heating Up. Anthropic Is Getting In on the Action.How to Tame the Beast: A Practical Action Plan
Before you delete your API key and swear off AI forever, know that you can manage these costs. The unpredictability is the enemy, but with the right strategies, you can bring Claude back under control.
1. Respect the 5‑Minute Timer
Do not leave your Claude session idle for more than a few minutes. Every time you step away for a coffee break or a meeting, you are likely killing the cache and forcing the AI to re‑read your entire history when you return. If you must pause, consider summarising the conversation so far in a prompt and starting a fresh session with that summary – it may be more token‑efficient than re‑feeding a huge context.
2. Audit Your Tooling and Extension
If you use third‑party frameworks or extensions to access Claude, check if they are cache‑friendly. Some plugins and scripts inadvertently break caching or insert unnecessary tokens with every request. Review the prompts your tools send. Simplify them. Use prompt caching features provided by Anthropic's official SDK where available.
3. Use Telemetry (But Be Careful)
Anthropic uses telemetry to optimise its caching strategies. However, as noted in a GitHub issue, disabling telemetry may cause the client to fall back to a default 5‑minute cache. Keep telemetry on, or at least be aware of the tradeoff.
4. Switch to Batch Processing for Non‑Critical Work
Claude offers a Batch API that is significantly cheaper than the standard API. For tasks like bulk data processing, document classification, or offline analysis, use the batch API. It is up to 40x cheaper than standard rates.
5. Choose the Right Model for the Job
You don't need Claude Opus 4.7 to write a short email or summarise a meeting note. Opus costs $5 input / $25 output per million tokens. Sonnet 4.6 costs $3 / $15. Haiku 4.5 costs just $1 / $5. Use the smallest model that can reliably do the task. For simple tasks, Haiku is more than sufficient. Use Opus only for complex reasoning, coding, or agentic workflows.
6. Monitor Your Token Usage Religiously
Do not wait for the monthly bill. Set up monitoring so you know your token consumption in real time. Use tools like Claude's own analytics dashboard or third‑party monitoring services. Set alerts for unusual spikes. Investigate and fix them immediately.
7. Consider Open‑Source and Self‑Hosting
If your use case is cost‑sensitive and the task is relatively simple, explore open‑source LLMs that you can run on your own infrastructure. Llama, Mistral, and others are improving rapidly and can be fine‑tuned for specific tasks. While they may not match Claude's intelligence, they may be "good enough" for many applications – and they give you complete control over costs.
Read also: The AI Legal Services Industry Is Heating Up. Anthropic Is Getting In on the Action.The Bottom Line
Anthropic is no longer a cheap, predictable utility. It is a premium service with a complex, usage‑based pricing model. The era of the ₹1,600 monthly unlimited plan is over. If you are using Claude for any serious work – coding, agentic workflows, content generation – you must actively manage your token consumption. The AI is not your enemy. But the new pricing model is your new reality.
The unpredictable costs are not necessarily a sign of bad intent. They are a sign of a company trying to align its pricing with the enormous computing resources its models consume. For heavy users, this means the free ride is over. For occasional users, it may still be affordable.
Read also: Your Private Instagram Chats Are No More Private: Meta Pulls the Plug on End-to-End Encryption From May 8The key is to stop treating AI as an unlimited resource and start treating it as a strategic, budgeted tool. Plan your usage. Optimise your prompts. Monitor your consumption. And always have a plan B – whether that is a smaller model, a different provider, or a self‑hosted alternative.
Your AI is only as valuable as your ability to pay for it. Make sure the bill doesn't come as a surprise.
FAQ
Q. I use Claude occasionally for research and writing. Will my costs increase dramatically?
A. Probably not. The new pricing mostly affects heavy, automated, or agentic usage. If you use Claude a few times a day for tasks like drafting emails, summarising articles, or brainstorming, your costs may remain stable or even decrease slightly. The problem arises when you run long sessions, process large codebases, or use third‑party automation tools. Monitor your usage for a week. If you see steady consumption, you are likely in the safe zone.
Q. What is the best way to monitor my Claude API costs in real time?
A. Anthropic provides basic usage statistics in its console. For more granular monitoring, consider setting up a proxy or a tool that logs every API request. Several third‑party platforms now offer AI cost management dashboards. You can also build a simple script that logs token counts and sends alerts when thresholds are crossed.
Q. Are there alternatives to Claude that are more cost‑predictable?
A. Yes. Google's Gemini offers a mix of free, flat‑fee, and usage‑based plans. OpenAI's GPT models also have usage‑based pricing, but their rates are generally lower than Anthropic's top‑tier models. For cost‑sensitive applications, consider using GPT‑4o mini or Gemini Flash. For complete cost control, self‑hosted open‑source models like Llama 3 or Mistral are excellent options – but they require more technical expertise to set up and maintain.
Q. If my cache is expiring every 5 minutes, is there any way to extend it?
A. Anthropic has not provided a user‑adjustable cache TTL. The 5‑minute window is a system‑wide setting. However, you can design your application to keep the conversation "alive" by sending periodic, low‑cost "ping" messages that maintain the session without consuming many tokens. For batch processing, you can group your work into chunks that fit within the 5‑minute window.
Q. How does Anthropic's pricing compare to human developers in India?
A. A junior developer in India might cost ₹25,000–₹50,000 per month. Claude API costs can vary wildly. A heavy user might spend $200 (₹16,500) per month – comparable to a junior developer. However, a misconfigured agent could spend that in a day. The key difference is that a human developer can be assigned non‑AI tasks and is more flexible. AI is best for well‑defined, repetitive, or massively parallel tasks.
Q. Will my Claude subscription plan be discontinued?
A. Anthropic has stated that it is testing new pricing models and that the changes only affect a small percentage of new users. However, the trend is clear: the company is moving toward usage‑based pricing for all users, especially those using automation and agentic workflows. Expect your current subscription to either be replaced or to include a much smaller quota of messages, after which you will be billed at API rates.
Read also: AI terms glossary: LLM, hallucinations, AGI explained in plain English for beginners by Career Tech InsightHave you been surprised by a sudden spike in your Claude costs? What strategies have you found effective for managing token usage? Share your story in the comments below. If you found this breakdown useful, share it with your team or fellow developers – the math of AI is changing, and we all need to learn the new rules.
Tags: Anthropic Pricing, Claude API, AI Cost, Cache TTL, Usage-Based Pricing, Indian Developers

Have a question about AI or the latest tech trends? We’d love to hear your thoughts!
Please stay on topic and keep it helpful. Note: All comments are moderated to keep our community spam-free.