AI Cost Curves

When API costs cross the self-hosting line — the economics that drive AI infrastructure decisions, and how to spot the crossover before it hits your bill.

The economics explained

Click each model to see the cost dynamics and visual explanation.

Pay-per-token
API Economics
"A taxi — cheap for short trips, ruinous for a daily commute"
API pricing is elegantly simple: you pay per token in, per token out. At low volumes, this is unbeatable — no infrastructure, no GPUs, no ops team. But the cost scales linearly with volume. Double your queries, double your bill. There's no economy of scale, no volume discount that matters at 100K+ queries per day.
Monthly cost Query volume (per day) 1K 10K 50K 100K API $5K $50K $250K $500K+ Linear: 2x volume = 2x cost
At 1,000 queries/day with a frontier model, you're spending roughly $3K-10K/month. Manageable. At 100,000 queries/day, that's $300K-1M/month. At that point, you're not paying for AI — you're paying rent on someone else's GPUs.

The cost ladder

As volume grows, the optimal infrastructure shifts — from API to hybrid to self-hosted.

Infrastructure maturity

Each rung represents a shift in where inference runs and what it costs

  • API model (low volume)
    Under 1K queries/day
    $3-10K/mo
  • API model (medium volume)
    1K-10K queries/day
    $10-100K/mo
  • Hybrid: API + self-hosted
    Route by complexity
    $5-20K/mo
  • Self-hosted SLM
    7B-14B model on GPU
    $2-10K/mo
  • Self-hosted + quantised
    4-bit on consumer GPU
    <$1K/mo

The crossover point depends on your query volume, latency requirements, and team capability.


Run the calculator API vs Self-Host: Cost Crossover

Find the request volume where self-hosted inference starts to beat per-token API pricing — an interactive calculator for AI cost crossover points.

Decision framework

Frequently asked questions

What is an AI cost curve?

An AI cost curve plots the total cost of serving inference against request volume for each infrastructure option — per-token API, self-hosted GPU, and hybrid. API pricing is a straight line through the origin (you pay per request, forever); self-hosting is a high fixed cost plus a near-flat marginal cost. Comparing the curves shows where one option overtakes another as volume grows.

What is the crossover point, and how do I find it?

The crossover point is the request volume where a fixed-cost self-hosted setup becomes cheaper than per-token API pricing. Find it by dividing the fully-loaded monthly cost of the self-hosted option (GPU, hosting, and the engineering time to run it) by the per-request API price. Below that volume, APIs win on total cost; above it, self-hosting does — assuming you can keep the GPU busy.

At what volume does self-hosting beat API pricing?

There is no universal number — it depends on your per-request API price, model size, and how fully you utilise the hardware. As a rule of thumb: under ~1K requests/day, APIs almost always win because engineering overhead dwarfs token spend; between 1K and 50K/day is the benchmark zone; above ~50K/day the economics usually favour self-hosting the bulk of traffic. Always validate with a real benchmark on your own prompts.

Does self-hosting include the cost of running it?

It must, or the comparison is wrong. The honest self-hosted figure is GPU or instance cost plus storage and networking plus the engineering time to deploy, monitor, patch, and keep the model current. Teams that only count the GPU bill systematically overstate the savings and cross over later than the spreadsheet predicts.

Why does a hybrid approach cut costs so much?

Most workloads are long-tailed: the majority of requests are simple and a small fraction need frontier reasoning. Routing the bulk (often 95%) to a cheap self-hosted small model and reserving a frontier API for the hard 5% captures most of the self-hosting savings while keeping quality where it matters — commonly an 80%+ reduction versus sending everything to a frontier API.

Diagrams

Embed these freely — each SVG is licensed CC BY 4.0 (opens in a new tab) with attribution to this page baked in.

Build vs Buy FinOps for AI