shipwithjev

Blog / 10

Jev Pricing in Practice: What 600+ Real Builds Actually Cost

No marketing math: the reported real-world costs of Jev builds, from $0.0004 scoring runs to $7/hour Doom. Plus where it lands in the cheapest-LLM hunt.

Two disclaimers before any numbers, because pricing pages are where honesty goes to die.

First: official Jev pricing is TypeSafe AI's to publish, at docs.typesafe.ai, and launch-period pricing can change. This page deliberately isn't a rate card. Second: everything below is builder-reported, collected from the directory with receipts linked per entry. Independent, unaudited, directionally consistent, and exactly the kind of data a rate card can't give you, because a per-token price tells you nothing until someone runs a real workload through it. This is the real-workload page.

The cost table

What actual jobs cost actual builders, as reported:

WorkloadScaleReported costBuild
Post scoring, 61 judge questions1 draft, ~1s$0.0004SuperX scorer
Browser task via Stagehand1 task~$0.001Stagehand remote browser
Flight search agent1 task, ~7s$0.004Browser Use flights
Email classification500 emails$0.035500 emails
Fraud judging w/ escalation100 emails, 1.42s~$0.07 (96/100 correct)Jev + Kimi cascade
Competitor ad teardown724 ads, ~40s$0.09Ad analysis
Lead scoring700 leads, ~40s$0.09Lead scorer
X post judging3,282 posts / ~26k verdicts$0.13X analysis
Doom, continuous play~10 queries/sec~$7/hourJev plays Doom

Read the table twice and the unit becomes obvious: the meaningful cost of Jev is per-decision, and it's a rounding error. Tens of thousands of verdicts land in the cents. The only entry that reaches whole dollars is the one making ten decisions a second, every second, on purpose, for an hour.

"Cheapest LLM API": how to actually think about the hunt

If you searched cheapest LLM API to get here: the honest answer is that the question has a hidden fork, and most cheapest-API listicles ignore it.

If your workload is generation (writing, chat, code), you're comparing frontier and mid-tier chat models on per-token rates, and Jev isn't in that race at all; it doesn't generate. Pick your favorite budget chat model and go with our blessing.

If your workload is decisions (classify, route, score, judge, choose), per-token comparisons actively mislead you, for two reasons the table above demonstrates. One: decision outputs are tiny, a label or a yes/no, so the chat-model habit of paying for eloquent prose is pure waste; a decision model charges you for the verdict and nothing else. Two: chat models make you parse structured meaning out of prose, which costs engineering time and retries; native structured output means the cheap call is also the reliable call. That's how "500 emails for 3.5 cents" happens, and it's why the email-classification math and the judge-at-scale math look the way they do.

The genuinely cheapest architecture for mixed workloads isn't a model at all, it's a shape: cascade. The fraud build's 96/100 for seven cents came from Jev ruling on everything and a bigger model seeing only the uncertain slice. Your expensive model as a specialist, not a commodity. Full comparison logic here.

Budgeting a project: the napkin method

Estimate three numbers: items per day, questions per item, runs per item (retries, re-judging). Multiply, then multiply by a per-verdict cost inferred from the closest workload in the table. The reported figures cluster tightly enough that your napkin lands within an order of magnitude, which for costs this size is plenty; the difference between $0.40/day and $4/day changes no decisions.

Then do the thing builders keep skipping: meter it anyway. Log calls and cost from day one. Not because you'll go broke, but because "so cheap we never measured" is how a runaway retry loop runs for a month, and because your own receipts are what make your build worth submitting.

Frequently asked questions

How much does Jev cost?

Officially: whatever TypeSafe's docs say today, that's the source of truth. In reported practice: real workloads from single-draft scoring to 26,000-verdict runs landed between $0.0004 and $0.13, with continuous 10-decisions-a-second play around $7/hour.

Is Jev the cheapest LLM API?

For decision-shaped workloads (classification, routing, judging), the reported numbers are the lowest we've seen published anywhere. For text generation it's not a competitor; it doesn't generate. Match the tool to the workload before comparing prices.

Why do these costs vary so much between builds?

Questions per item and items per run: one build asks 61 questions per draft, another asks one per email. The per-verdict cost stays roughly stable; the workload multiplies it. Estimate yours with the napkin method above.

Are these numbers verified?

They're author-reported with receipts (code, video, or logs) linked from each build page, and the site's standing disclaimer applies: numbers as reported, not lab-audited. Multiple independent builders converging on the same magnitudes is the best available signal short of formal benchmarks, which don't exist yet.

What's the cheapest way to add AI decisions to an existing product?

Start with one high-volume queue you already have (tickets, emails, leads), run a few hundred historical items, and check verdicts against your own ground truth before going live. The getting-started guide walks the whole path.

Numbers throughout are as reported by the build authors, not verified by shipwithjev. Code-shaped examples are pseudocode; the official docs live at docs.typesafe.ai.