[ Cost breakdown ] · 7 min read
Simple Chatbot vs AI Chatbot: What They Actually Cost to Run
Almost every chatbot comparison quotes the same unsourced numbers. We could not trace any of them, so we deleted them and worked the cost out from published API prices instead. Here is what an AI chatbot actually costs per conversation.
Key takeaways
- The resolution and ROI statistics in most chatbot comparisons have no traceable source. We removed the ones this page used to carry rather than repeat them.
- Worked from Anthropic's published API prices, a six-turn support conversation costs roughly 2 to 3 cents on a small model and about 5 cents on a mid-size one. The method is below so you can redo it with your own numbers.
- That puts 1,000 conversations a month near $24 to $48 in model cost — far below the $800-a-month figures that circulate. Model tokens are rarely what makes an AI chatbot expensive.
- The real cost is grounding and testing. Published RAG research found that a retrieval system's failure modes only become visible once it is running in front of real users.
- Choose a scripted bot when your questions are few and stable. Choose an AI bot when the questions vary more than a script can anticipate.
This page used to tell you that AI chatbots resolve 78% of queries against 52% for rule-based ones, generate 3.4 times more leads, and return $8 for every $1 spent. We went looking for where those numbers came from and could not find an origin for any of them. They appear on hundreds of agency blogs, always without a study attached. So we deleted them.
What follows is the version we can stand behind: the cost of running an AI chatbot worked out from prices the vendor publishes, and an honest account of which of the two options is the better buy.
What an AI chatbot actually costs per conversation
You can calculate this yourself, which is the point. Anthropic publishes per-token prices for the Claude API. At the time of writing, Claude Haiku 4.5 is $1 per million input tokens and $5 per million output tokens. Claude Sonnet 5 is $2 and $10 — a price Anthropic confirmed in August 2026 would become permanent rather than rising to $3 and $15 as originally scheduled.
Our method: assume a support conversation runs six back-and-forth turns. Each turn sends the system prompt plus whatever business information the bot needs to answer, which we budget at roughly 3,000 input tokens, and comes back with about 200 output tokens. That is 18,000 input tokens and 1,200 output tokens across the conversation.
| Model | Input cost | Output cost | Per conversation | 1,000 conversations |
|---|---|---|---|---|
| Claude Haiku 4.5 | $0.018 | $0.006 | ~$0.024 | ~$24 |
| Claude Sonnet 5 | $0.036 | $0.012 | ~$0.048 | ~$48 |
Two things follow. The first is that a thousand answered conversations a month costs somewhere between roughly $24 and $48 in model tokens, not the several hundred dollars usually quoted. The second is that if you see a much higher number, it is not the tokens. It is a per-seat SaaS subscription, and you are paying for the vendor's dashboard rather than for compute.
Prompt caching cuts the input side further when your system prompt and business context stay the same between turns, which for a support bot they almost always do. We have not put a figure on that because how much you save depends entirely on how your prompt is structured.
Where the money actually goes
If model tokens are cheap, the cost has to be somewhere else, and it is. It is in making the bot answer correctly.
A scripted bot cannot be wrong about your business, because it can only repeat sentences you wrote. An AI bot generates its answer, so it needs to be grounded in your real information and then tested to confirm it stays grounded. That testing is the line item nobody quotes you for.
There is published work on how hard this is. In Seven Failure Points When Engineering a Retrieval Augmented Generation System (Barnett et al., 2024), the authors built and studied three retrieval-augmented systems across research, education, and biomedical domains, and catalogued where they broke. Their conclusion is the useful part for a business owner: they argue that validating a system like this is only feasible during operation, and that its robustness evolves rather than being designed in at the start.
Read that as a budget warning rather than a technical footnote. You cannot fully test an AI chatbot before launch. Some of the work happens after it goes live, watching real questions and correcting what it gets wrong. Budget for the weeks after launch, not just the build.
The case for a scripted bot
A simple chatbot maps questions to answers you wrote in advance, using buttons, keywords, or a decision tree. It is unfashionable and frequently the correct choice.
- It cannot invent anything. For a business where a wrong answer is expensive, that guarantee is worth more than fluency.
- The cost is knowable up front. No per-conversation charge, no bill that scales with a traffic spike.
- It is fast to change. Editing an answer takes a minute and does not require re-testing whether the bot still behaves.
The trade-off is real and it shows up quickly. A scripted bot is stumped by anything you did not anticipate, and the maintenance never ends, because every change to your business is a change you make by hand.
The case for an AI chatbot
An AI chatbot reads what someone meant rather than matching what they typed. It handles a question phrased three different ways, a question with two parts, and a follow-up that only makes sense in the context of the previous message.
That is worth paying for when the range of questions is genuinely wide. If you sell one product and take bookings, it is not. If you have a large catalogue, detailed policies, or customers who ask about combinations of things, a script becomes a losing battle long before it becomes a good experience.
| Factor | Scripted bot | AI chatbot |
|---|---|---|
| Can it be wrong about your business | No | Yes, if poorly grounded |
| Model cost per conversation | None | ~2 to 5 cents |
| Handles unanticipated questions | No | Yes |
| Effort after launch | Editing answers by hand | Monitoring and correcting |
| Best for | Few, stable questions | Wide or changing questions |
How we decide with clients
We start with the questions, not the technology. If you can export a month of customer emails or chat logs, we read them and count how many distinct things people actually asked. Below roughly twenty recurring questions, a scripted bot usually covers it and the AI is a solution to a problem you do not have. Above that, the script starts costing more to maintain than the AI costs to run.
We build both as part of our AI and automation work, and we have talked clients out of the more expensive option often enough that it is worth saying plainly: if a scripted bot answers your questions, buy the scripted bot. If you want to go a level deeper on the AI side, our guide on AI chatbots versus RAG covers what changes when the bot has to read your documents.
If you would rather have someone work through the numbers with you against your own volumes, we do that in a free consultation, and we will tell you if the answer is the cheaper one.
Frequently asked questions
How much does it cost to run an AI chatbot per month?
For model tokens alone, roughly $24 to $48 for a thousand six-turn conversations, calculated from Anthropic's published Claude API prices. Build, hosting, and retrieval infrastructure are separate. If a vendor quotes several hundred dollars a month, most of that is subscription margin rather than compute.
Why did you remove the chatbot ROI statistics from this page?
Because we could not find an origin for them. Figures like 78% query resolution and $8 returned per $1 invested appear on hundreds of pages with no study attached. We would rather publish a smaller number of claims we can point to a source for.
Will an AI chatbot make things up about my business?
It can if it is not grounded in your real information and tested. Published research on retrieval systems (Barnett et al., 2024) argues that this class of system can only really be validated once it is running, so plan for a correction period after launch rather than assuming it is finished at handover.
Can I start with a simple chatbot and upgrade later?
Yes, and it is often the sensible order. Starting scripted teaches you what customers actually ask, which is the input you need to build the AI version well. The answers you write for the scripted bot become the grounding material for the AI one, so the work carries over.
Which is better for capturing leads?
We do not have a sourced figure for this and will not guess at one. What we can say from building both is that an AI bot handles a qualifying conversation that goes off-script, and a scripted bot handles a fixed form well. If your qualifying questions are the same every time, the script is not the weak link.
Related services
Related guides
Want a professional site without the agency invoice?
Tell us about your project below and we'll reply within 24 hours with a clear, fixed quote, no surprises.
Prefer WhatsApp or email?