Northstar Labs is a two-person AI tools team running customer-support agents across three independent SaaS products. Every reply their agents send costs real LLM tokens — and historically, Northstar ate that cost themselves. They couldn't bill end customers per resolution outcome, so high-volume products subsidized by-product-month margin and high-volume low-revenue products ran hot on cost-of-goods.
Their billing backend was a Stripe webhook stitched together with a Slack alert on every charge and a spreadsheet the founders reconciled manually each Friday. Adding a new product to bill required a deploy, a new Slack channel, and a new tab in the spreadsheet. The founders spent more time reconciling invoices than shipping product.
They needed one place to meter agent runs, charge per token, pay themselves on successful outcomes, and surface per-product revenue without spinning up another internal tool. That's what Rev is for.
| Dimension | Before Rev | After Rev |
|---|---|---|
| Billing surface area | Stripe webhook + Slack alert + spreadsheet | One POST to /v1/meter |
| Time to add a new product | One deploy + one Slack channel + one tab | Same endpoint — zero new infra |
| Outcome-aware monetization | None — flat per-call, no resolution signal | Token rate + outcome bonus per resolution |
curl -X POST https://rev.polsia.app/v1/meter \
-H "Authorization: Bearer " \
-H "Content-Type: application/json" \
-d '{
"customer_id": "user-123",
"action": "support_reply",
"tokens": 412,
"outcome": true
}'
One POST per agent run. Token charges and outcome bonuses handled end-to-end. Free tier ships with 1,000 events/month.
Wire your agent up the same way →