BurnLens — The open-source FinOps proxy for AI spend
Track every dollar by feature, team, and customer across OpenAI, Anthropic, Google, Groq, Mistral, Together, xAI, DeepSeek, Azure OpenAI, and AWS Bedrock. Hard-cap budgets before the API call — not after the bill arrives.
pip install burnlens
burnlens start
# Dashboard at http://127.0.0.1:8420/ui
The Problem
Bills tell you the model, not the why. Your invoice says gpt-4o: $4,287. It doesn't say which feature, which team, or which customer burned it. By the time you trace the spike, it's already on next month's card.
Alerts arrive after the damage. A bad deploy, a runaway agent, or one abusive customer can trigger thousands of API calls before any dashboard turns red. You find out when you open the bill — or when your CEO does.
Every provider is a different silo. OpenAI's usage page. Anthropic's console. Azure Cost Management. Bedrock CloudWatch. No unified view, no way to ask "which feature is our biggest AI spend across all providers."
How It Works
-
Drop-in proxy. Point your SDK's
BASE_URLatlocalhost:8420. Existing code works unchanged. The proxy is designed for low overhead and supports streaming passthrough. -
Tag what matters. Request headers (
X-BurnLens-Tag-Feature,X-BurnLens-Tag-Team,X-BurnLens-Tag-Customer, plusX-BurnLens-Tag-Agent-IdandX-BurnLens-Tag-Workflow-Idfor agent workloads) attribute any call to any dimension. Tags are stripped before the request reaches the AI provider. If you enable cloud sync, tag values are uploaded to your workspace alongside cost metadata — never prompt or response bodies. -
Cap before you call. Register an API key with a daily dollar limit. At 100%, BurnLens returns
429before the upstream request is made — not after the bill arrives. 50% and 80% thresholds fire Slack or email alerts. Exact behaviour under concurrency, streaming, retries, and unpriced models is specified in Budget enforcement semantics. -
One dashboard for supported providers. OpenAI, Anthropic, Google, Groq, Mistral, Together, xAI, DeepSeek, Azure OpenAI, and AWS Bedrock spend in one unified view. Model breakdowns, waste detection, and budget tracking use versioned provider pricing.
Code Example
import os, openai
os.environ["OPENAI_BASE_URL"] = "http://127.0.0.1:8420/proxy/openai"
client = openai.OpenAI(default_headers={
"X-BurnLens-Tag-Feature": "chat",
"X-BurnLens-Tag-Team": "backend",
"X-BurnLens-Tag-Customer": "acme-corp",
})
Tags are stripped before the request reaches OpenAI. They never appear in the provider API payload.
Agent workloads. Tag with X-BurnLens-Tag-Agent-Id and X-BurnLens-Tag-Workflow-Id to get cost per agent and cost per workflow instead of only cost per model:
client = openai.OpenAI(default_headers={
"X-BurnLens-Tag-Agent-Id": "refund-agent",
"X-BurnLens-Tag-Workflow-Id": "refund_review",
})
Break spend down with GET /api/costs/by-tag?tag=agent_id locally, or GET /api/v1/usage/by-tag?tag_type=agent_id on BurnLens Cloud. Tool and function calls are counted per request, so a looping agent shows up as tool-call volume rather than just a larger bill.
Multi-word tag headers accept either spelling — X-BurnLens-Tag-Agent-Id or X-BurnLens-Tag-Agent_Id. Prefer the hyphenated form: nginx drops headers containing underscores unless underscores_in_headers is on.
Cost per accepted outcome
Spend alone doesn't tell you whether it was worth it. Report what a workflow produced and BurnLens divides one by the other:
burnlens outcome record --workflow refund_review --status accepted --id ticket-8412
burnlens outcome show
Workflow Accepted Rejected/Failed Total cost Rework Unattributed Per accepted
refund_review 780 140 $18.40 $3.20 $1.10 $0.0236
From an application, post outcomes to BurnLens Cloud instead:
curl -X POST https://api.burnlens.app/v1/outcomes \
-H "X-API-Key: $BURNLENS_API_KEY" \
-d '{"outcomes":[{"outcome_id":"ticket-8412","workflow_id":"refund_review",
"status":"accepted","event_time":"2026-08-09T12:00:00Z"}]}'
Three things worth knowing about the number:
outcome_idis yours and it is the idempotency key. Re-posting the same one is ignored, so at-least-once delivery and importer re-runs can't inflate the count that the cost is divided by.- Per accepted = total workflow spend / accepted outcomes. Failed and rejected attempts are charged to the successes, because that is what one working result actually costs. The
Reworkcolumn shows how much of it was spent on attempts that didn't land. - Unattributed spend is shown, not hidden. A request is charged to the first outcome of its workflow that follows it within a window (24h by default,
--windowto change). Spend with no outcome after it stays visible in its own column rather than quietly disappearing from the denominator.
A workflow with spend and no accepted outcomes reports no unit cost at all rather than $0 — the absence is the signal.
Coding agents: no instrumentation required
For agent work you don't have to report anything. A merged pull request already is an accepted outcome, and a closed-unmerged one is a rejected outcome — so BurnLens reads them out of GitHub and joins them to the agent spend it scanned off disk:
burnlens scan --provider claude # agent session cost, from local logs
burnlens outcome derive # merged PRs -> outcomes, via the gh CLI
burnlens outcome show # cost per merged PR
Measured on this repository while building it: 81 merged PRs, $407 of Claude Code spend, about $5.03 per merged PR. (A floor, not a ceiling — any model missing from the pricing tables contributes $0, so check burnlens pricing if a number looks low.)
Both commands are idempotent and safe on a schedule: outcome ids are derived deterministically from the repo and PR number, so re-running only ever adds newly-closed PRs.
Cost is attributed per repository rather than per PR, because agent session logs record which repo a session ran in, not which branch. With several PRs in flight that is the honest reading of what one merged PR costs.
Use Cases
Coding agents. Cursor, Claude Code, Cline, Windsurf — attribute cost per PR, repo, or developer. Set a hard daily cap per API key so one runaway agent can't blow the team's monthly budget overnight.
Customer-facing AI. Tag each request with a customer ID. See which customers drive the most cost, alert on thresholds, and optionally route to cheaper models.
RAG and agents. Tag retrieval calls, tool calls, and generation separately. See whether your vector search or synthesis step is the cost driver — and whether it justifies the output quality.
Internal tools. Set per-team monthly budgets, get Slack alerts at 80% and 100%, and export monthly records for comparison with provider invoices.
Supported Providers
| Provider | Status | Notes |
|---|---|---|
| OpenAI | Stable | All models, streaming, reasoning tokens |
| Anthropic | Stable | All models, streaming, prompt caching tokens |
| Stable | Gemini 1.5–2.5 (+ 3.x previews), requires patch_google(); Gemini 2.5 / 3.1 Pro switch to their higher long-context rate above 200K input tokens |
|
| Groq | Beta | OpenAI-compatible: point GROQ_BASE_URL at /proxy/groq |
| Together | Beta | OpenAI-compatible: set client base_url to /proxy/together |
| Mistral | Beta | OpenAI-compatible: set client base_url to /proxy/mistral |
| xAI | Beta | OpenAI-compatible: point XAI_BASE_URL at /proxy/xai |
| DeepSeek | Beta | OpenAI-compatible: point DEEPSEEK_BASE_URL at /proxy/deepseek |
| Azure OpenAI | Beta | Point client azure_endpoint at /proxy/azure; set BURNLENS_AZURE_ENDPOINT to your resource URL |
| AWS Bedrock | Beta | Claude models; Bedrock API key (Authorization: Bearer, no SigV4); set BURNLENS_BEDROCK_REGION; Global cross-region pricing |
Pricing covers current text/chat models for the supported providers, plus
audio-modality tokens (OpenAI *-audio-preview / *-realtime-preview, billed at
their own per-million rate) and arbitrary flat per-unit fees via each model's
optional unit_prices (e.g. per web-search call). Image and video generation are
still out of scope. Gemini Pro's higher rate above 200K input tokens is applied
automatically (tiered pricing, since v1.12.0). Audio rates should be re-checked
against the provider pricing page — they change less often than text but do move.
Why BurnLens
| BurnLens | Helicone / Langfuse | Vantage / CloudZero | |
|---|---|---|---|
| Open source | ✓ | Partial | ✗ |
| Local-first (prompt bodies never pass through the vendor) | ✓ | ✗ | ✗ |
| Hard caps before API call | ✓ | ✗ | ✗ |
| Per-customer attribution | ✓ | ✓ | ✗ |
| Multi-cloud (Azure / AWS / GCP) | Partial | Partial | ✓ |
Dashboard
Configuration
Zero config required — sensible defaults out of the box. Optional burnlens.yaml:
budget_limit_usd: 500.00
budgets:
teams:
backend: 200.00
research: 100.00
customers:
acme-corp: 50.00
alerts:
slack_webhook: https://hooks.slack.com/...
# Per-agent baselines: alert when an agent tagged `agent_id` burns 3x its own
# 7-day hourly average, or loops on one trace_id. Defaults shown.
agent_deviation_multiplier: 3.0
agent_min_spend_usd: 1.00
agent_loop_max_requests: 20
agent_loop_window_minutes: 10
CLI
burnlens start # proxy + dashboard on :8420
burnlens top # live cost by model (htop-style)
burnlens report # weekly cost summary
burnlens analyze # waste detection report
burnlens export # CSV of last 7 days
burnlens run -- python app.py # auto-tag a process with repo / dev / pr / branch
burnlens key register <name> # label an API key + set a daily cap
burnlens key list # list registered keys with caps
burnlens keys # today's spend per registered key
burnlens scan claude # import Claude Code session costs from disk
burnlens scan cursor # import Cursor IDE session costs from disk
burnlens scan codex # import OpenAI Codex session costs from disk
burnlens scan gemini # import Gemini CLI session costs from disk
Contributing
Issues and PRs welcome. See CONTRIBUTING.md.
git clone https://github.com/sairintechnologycom/burnlens
cd burnlens
pip install -e ".[dev]"
pytest
License
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file burnlens-1.15.0.tar.gz.
File metadata
- Download URL: burnlens-1.15.0.tar.gz
- Upload date:
- Size: 221.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d921520fdef42e1e85fc9f6be398aaa5bc6f974c615b93819d749b41049aaa6
|
|
| MD5 |
851280187167d01b5122df13e5b09cbd
|
|
| BLAKE2b-256 |
cec6637c3390270cc277facccbce2e3c2b5af639bbdf54040ff06b88fb1c3d11
|
Provenance
The following attestation bundles were made for burnlens-1.15.0.tar.gz:
Publisher:
publish.yml on sairintechnologycom/burnlens
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
burnlens-1.15.0.tar.gz -
Subject digest:
2d921520fdef42e1e85fc9f6be398aaa5bc6f974c615b93819d749b41049aaa6 - Sigstore transparency entry: 2406555018
- Sigstore integration time:
-
Permalink:
sairintechnologycom/burnlens@a45b008148517bba2068a31c488df2b19ef4dbd3 -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/sairintechnologycom
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a45b008148517bba2068a31c488df2b19ef4dbd3 -
Trigger Event:
push
-
Statement type:
File details
Details for the file burnlens-1.15.0-py3-none-any.whl.
File metadata
- Download URL: burnlens-1.15.0-py3-none-any.whl
- Upload date:
- Size: 256.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e2aa6e29ea2205f6f52a5449d6f222e36607769860431b370c2e8ddf991427b
|
|
| MD5 |
f9278e7ba04f27dbfce0951fba2b42c0
|
|
| BLAKE2b-256 |
14caab9fe83213f4c5733c0fe94b3388623188a6281e45379618c79e89e024b8
|
Provenance
The following attestation bundles were made for burnlens-1.15.0-py3-none-any.whl:
Publisher:
publish.yml on sairintechnologycom/burnlens
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
burnlens-1.15.0-py3-none-any.whl -
Subject digest:
9e2aa6e29ea2205f6f52a5449d6f222e36607769860431b370c2e8ddf991427b - Sigstore transparency entry: 2406555028
- Sigstore integration time:
-
Permalink:
sairintechnologycom/burnlens@a45b008148517bba2068a31c488df2b19ef4dbd3 -
Branch / Tag:
refs/tags/v1.15.0 - Owner: https://github.com/sairintechnologycom
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a45b008148517bba2068a31c488df2b19ef4dbd3 -
Trigger Event:
push
-
Statement type: