AWS reminded me why I built $2/month flat-rate AI
This week, a story hit Hacker News: "I returned to AWS and was reminded why I left."
It has 500+ points and 400+ comments. Developers are nodding along.
The story isn't really about AWS. It's about billing that punishes you for using a tool correctly.
The AWS billing problem is the same as the ChatGPT billing problem
With AWS, you provision something, forget a setting, and wake up to a $400 surprise.
With ChatGPT API, you call it in a loop, forget a rate limit, and wake up to a $200 charge you didn't expect.
Both tools are powerful. Both have pricing models that require you to understand your usage perfectly before you use them. That's a tax on experimentation.
If you're scared to run your code because you don't know what it will cost, that's a broken product.
What I built instead
I built SimplyLouie — a flat-rate Claude API wrapper. $2/month. No usage meters. No surprise bills. No ceiling on experimentation.
Here's the curl command:
curl https://simplylouie.com/api/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"messages": [{"role": "user", "content": "explain this code"}],
"model": "claude-3-5-sonnet-20241022"
}'
That's it. You pay $2/month. You use it. You don't get a bill.
Run it 10 times. Run it 10,000 times. Same price.
Why flat-rate matters for learning
When I was learning to use Claude effectively, I needed to:
- Iterate on system prompts dozens of times
- Test edge cases in batch
- Run comparison queries between models
With per-token billing, that kind of experimentation costs money. Not a lot — but enough to make you hesitate.
Hesitation is the enemy of learning.
Flat-rate removes the hesitation. You experiment more, learn faster, build better.
The developer experience difference
With Anthropic API direct:
- Check your balance before running
- Set spend limits
- Watch the console
- Worry about loops
With SimplyLouie:
- Run your code
- Go to sleep
- Wake up to the same $2 charge
Who this is for
This isn't for production at scale. Anthropic's direct API is the right choice if you're building a product that sends millions of tokens per month.
This is for:
- Developers learning to prompt engineer
- Indie hackers prototyping
- Students who can't afford $20/month ChatGPT
- Developers in Nigeria, India, Brazil, Pakistan — where $20/month is real money
For context: in Nigeria, ChatGPT costs ₦32,000/month. SimplyLouie costs ₦3,200/month.
In India: ₹1,600/month vs ₹165/month.
In Brazil: R$100/month vs R$10/month.
Flat-rate. No surprises. simplylouie.com
The AWS lesson
The developers complaining about AWS billing aren't complaining about price. They're complaining about unpredictability.
A $50/month AWS bill isn't the problem. A $50 bill that was supposed to be $5 is the problem.
Same with AI APIs. $2/month forever beats $0 until suddenly it's $200.
Build on tools you can predict. Experiment without fear.
Top comments (0)