An API, or application programming interface, is the structured way one piece of software asks another for something. Your CRM needs a customer record from a database sitting on a server somewhere, so it sends the request in an agreed format and gets the answer back in a format it knows how to read. None of that is new. APIs were doing that job long before AI turned up, and what changed is what sits on the other end: a model instead of a database.
How an API works behind the tools you already pay for
Take Cursor, the coding tool. You type a question into it on your laptop. Behind the scenes Cursor calls the Claude API: here is a user, here is the specific thing they asked, what is the answer. The API is the middle layer between the software and the model. Claude answers, Cursor pulls that back to your machine and writes the code.
Nearly every tool you already pay for works the same way. Ask Notion runs on GPT 5.5. Intercom’s FinBot is a model underneath, reached through an API.
You can wire up the same thing. Today an HVAC office manager opens ChatGPT, asks it to write a maintenance-plan description, copies the answer and pastes it into the CRM. Put the API call inside the CRM instead and the office manager clicks one button in the record they already have open.
How is an API used? The four levels
We use a maturity ladder with four levels on it. Every level runs on the same models. What changes is how much of the work a person is still doing by hand.
- Use the tool directly. ChatGPT in a browser tab.
- Use a wrapper. Cursor is a wrapper, a product built on someone else’s model API. Thin or thick, you never touch the API yourself.
- Integrate the API into a tool you already run. The button in your CRM.
- Run the API through agents. An agent is a cascading use of the API. Rather than one call and one answer back, it pings the API ten times and keeps the loop going until the outcome is properly worked out. Chasing an overdue invoice takes several calls: draft the message, read the reply, decide whether to escalate.
Level three sounds like a project. It is often a button.
How much does an API cost? Why your bill will not look like $20 a month
A software company charges a fixed subscription and pays a variable API cost. The gap between those two numbers is the business.
| What is running | What you pay | What the API calls cost |
|---|---|---|
| A tool with a normal margin | $20 a month | $6 to the company selling it |
| Cursor | $20 a month | more than $200 to Cursor |
| Several hours in ChatGPT | $20 for the month | absorbed by the subscription |
| The same hours on your own platform | $100 | paid by you, per call |
Cursor and a lot of the big venture-backed startups run that second row deliberately. They subsidise the gap to take a larger share of the market at a cheaper rate, and being venture-backed they have the cash to do it.
The subsidy disappears the moment you build something yourself. Put an API call behind a button in your own admin panel and you pay the direct cost of every call, with nobody absorbing the difference. Price the busiest month you have had, not the average one.
APIs are the variable factor in what AI costs at scale. Subscription against usage is the lesson to read before you commit a budget to one.
Common questions
What does API stand for? Application programming interface. It is the agreed format one program uses to ask another program for something, and to get the answer back in a shape it can use.
Do I need an API to use AI? No. Level one is a person in a browser tab, copying answers out of ChatGPT and pasting them into the CRM. The API matters when you want the answer to land in the system without anyone moving it.