gringotts-api¶
Prepaid credits for your FastAPI, with your own Stripe account, in 5 minutes.
You built a useful API. Gringotts lets you charge for it per request — API keys, atomic credit deduction, a purchase page, and a Stripe webhook that actually credits the buyer — all inside your own app and database. No SaaS metering service, no gateway in front of your API, no revenue share.
from fastapi import Depends, FastAPI
import gringotts
from gringotts import CreditedUser, CreditPack, GringottsConfig, charge
app = FastAPI()
gringotts.init_app(
app,
GringottsConfig(
packs=[CreditPack(credits=100, price_cents=500, name="Starter")],
# X-API-Key is this example app's only mutable authorization state.
idempotency_replay_validator=lambda _scope: True,
),
)
@app.post("/predict")
def predict(user: CreditedUser = Depends(charge(1))):
return {"result": "..."}
That’s the whole integration. Callers send X-API-Key; each request costs
credits; when they run out they get a machine-readable HTTP 402 pointing at
your purchase page; Stripe Checkout tops them up.
Why gringotts¶
Self-hosted, zero SaaS: your database, your Stripe account. No per-request network calls, no rev share, no vendor that can shut down under you.
Correct where it’s hard to be: atomic credit deduction (no overspend under concurrency), automatic refund when your handler raises, idempotent webhook crediting, optional
Idempotency-Keyso retried charges/grants apply once, refund/dispute clawback (clamped so a balance never goes negative), and an append-only ledger — with a per-row running balance — auditing every credit movement.Agent-ready 402: the insufficient-credits response is typed JSON (x402-compatible vocabulary), so AI-agent clients can parse it and pay.
Install¶
pip install gringotts-api
The package installs as gringotts (the bare PyPI name was taken).
Quickstart¶
Create the database and a user (uses
DATABASE_URL, defaultsqlite:///./gringotts.db):gringotts init-db gringotts create-user alice --credits 5 # API key (shown once — save it now): gk_...
Guard your endpoints with
charge(cost)as in the example above, or compute the cost from the request:cost_per_row = lambda request: int(request.headers["X-Rows"]) @app.post("/big-job") def big_job(user: CreditedUser = Depends(charge(cost_per_row))): return {"status": "queued"}
Call it:
curl -X POST http://localhost:8000/predict -H "X-API-Key: gk_..."
Sell credits. Set two environment variables and define your packs:
export STRIPE_SECRET_KEY=sk_live_... export STRIPE_WEBHOOK_SECRET=whsec_...
init_appmounts, under/gringotts:Route
What it does
GET /gringotts/buyMinimal purchase page listing your packs
POST /gringotts/checkoutRedirects the buyer to Stripe Checkout
POST /gringotts/webhookVerifies the Stripe signature and credits the buyer — exactly once, even if Stripe retries
GET /gringotts/balanceBalance for the calling
X-API-KeyGET /gringotts/usagePaginated usage history (JSON) for the calling key
GET /gringotts/accountAccount page for your users: balance, usage, buy link
GET /gringotts/adminAdmin dashboard (requires an admin key, see below)
Point a Stripe webhook at
POST /gringotts/webhookforcheckout.session.completed— and alsocheckout.session.async_payment_succeededif you enable delayed payment methods (e.g. ACH), where the completed event arrives before the money settles. Credits are granted only once the session’spayment_statusispaid. To claw credits back when a payment is refunded or disputed, also registerrefund.created,refund.updated,charge.dispute.funds_withdrawn, andcharge.dispute.funds_reinstated— a refund reverses a proportional share of the granted credits (clamped at zero, never negative), and a lost dispute reverses the purchase. For local testing:stripe listen --forward-to localhost:8000/gringotts/webhook
Try it in 2 minutes (seeded demo)¶
python examples/seed_demo.py # creates 5 users + 2 weeks of fake traffic
uvicorn examples.demo_app:app
The seed script prints every API key once. Then:
Open
http://localhost:8000/gringotts/admin, paste the admin key — stat tiles (users, credits outstanding/consumed/purchased, revenue), a users table with inline create-user and grant-credits forms, and an activity feed that refreshes every 5 seconds.curl -X POST localhost:8000/predict -H "X-API-Key: <ada's key>" -d '{"text":"hi"}' -H "Content-Type: application/json"a few times and watch the feed update.Open
http://localhost:8000/gringotts/account, paste ada’s key — balance, recent usage, and the buy link.
Admin dashboard and API¶
Users with the admin flag (gringotts create-user ops --admin, or
gringotts set-admin alice) can use the dashboard at /gringotts/admin and
the JSON API with their own gk_ key. Every admin route returns JSON for
plain clients and an HTML fragment for the dashboard (htmx is vendored —
no CDN, no build step):
curl localhost:8000/gringotts/admin/stats -H "X-API-Key: gk_<admin>"
curl localhost:8000/gringotts/admin/users -H "X-API-Key: gk_<admin>"
curl -X POST localhost:8000/gringotts/admin/users -H "X-API-Key: gk_<admin>" \
-d "username=carol&credits=10" # returns the new key, once
curl -X POST localhost:8000/gringotts/admin/users/3/grant \
-H "X-API-Key: gk_<admin>" -d "amount=50"
curl localhost:8000/gringotts/admin/users/3/usage -H "X-API-Key: gk_<admin>"
curl localhost:8000/gringotts/admin/activity -H "X-API-Key: gk_<admin>"
The dashboard and account pages keep the pasted key in sessionStorage and
send it as a header on every request — serve them over HTTPS in production.
The 402 response¶
When a key has too few credits, gringotts returns 402 Payment Required with
a frozen, machine-readable body:
{
"error": {
"code": "insufficient_credits",
"type": "payment_required",
"message": "Insufficient credits: request costs 5, balance is 2"
},
"x402Version": 1,
"cost": 5,
"balance": 2,
"accepts": [
{"type": "stripe-checkout", "url": "https://api.example.com/gringotts/buy"}
]
}
accepts lists the ways a caller (human or agent) can pay; today that’s your
Stripe Checkout purchase page. Additional schemes (e.g. Stripe’s Machine
Payments Protocol) can be added later without breaking the shape.
How it stores things¶
Four tables, created by gringotts init-db:
users— username, SHA-256 hash of the API key (the key itself is shown once and never stored), last 4 characters for display, current balance. A databaseCHECK (credits >= 0)backstops the non-negative-balance invariant.credit_transactions— an append-only ledger. Every charge, refund, grant, and purchase is a signed row written in the same transaction as the balance update, and each row also storesbalance_after(the running balance as of that row), so the balance is auditable per row and drift is structurally detectable:gringotts reconcilechecks that a user’s cachedcredits, the runningSUM(amount), and the latestbalance_afterall agree. Purchases carry the Stripe checkout session id under a unique constraint — that’s what makes webhook crediting idempotent, even when Stripe sends more than one event for the same session. Monetary rows also store their ISO currency, so revenue is never summed across incompatible minor units.idempotency_records— one response-cache row per caller andIdempotency-Key. The unique caller/key index elects one request to run; a concurrent duplicate gets409, and a later retry replays the stored result without running or charging again. Method, path, query, every request header, and body are fingerprinted, so changed authorization or pricing inputs conflict.checkout_orders— the locally authorized user, credits, price, and currency for each Stripe Checkout. A paid webhook grants only when the Stripe Session matches this row exactly.
Works on SQLite out of the box and Postgres via
DATABASE_URL=postgresql://... (both run in CI, including a parallel-writer
test that proves no overspend). On SQLite the engine uses WAL and a
busy_timeout (default 30s, GRINGOTTS_SQLITE_BUSY_TIMEOUT to change) so
concurrent writers wait rather than erroring with “database is locked.”
Configuration¶
Setting |
Where |
Default |
|---|---|---|
|
env |
|
|
env or |
— |
|
env or |
— |
|
|
|
|
|
back to the purchase page |
|
|
|
|
|
|
CLI¶
gringotts init-db
gringotts create-user alice --credits 5
gringotts create-user ops --admin
gringotts set-admin alice # or --revoke
gringotts add-credits alice 100
gringotts balance alice
gringotts reconcile # flag any balance that disagrees with the ledger
gringotts migrate # apply pending schema changes to an existing DB
Upgrading an existing database is gringotts migrate (not a recreate): it
applies forward-only, idempotent schema changes in place, and refuses to run if
the ledger doesn’t already reconcile. Before upgrading from 0.3.x to 0.4.0,
drain in-flight Checkout Sessions; 0.4.0 fulfills only Sessions backed by its new
local checkout_orders row. Upgrading from 0.1.x also requires draining delayed
payments because those purchases were keyed on the Stripe event id rather than
the Checkout Session id (gringotts migrate warns when it finds such rows).
Not yet (deliberately)¶
Subscriptions and recurring billing, postpaid invoicing, decimal or
multi-currency pricing, rate limiting, x402/MPP crypto settlement, and
key rotation. Credit expiration is deliberately out of scope pre-1.0: honest
expiration needs FIFO lot-tracking, and unexpired prepaid credits are the
operator’s liability to manage. The ledger is designed so these can be added
without schema breaks, and gringotts migrate applies additive schema changes
in place.
Known limitation: a charge is refunded when your handler raises; a handler that returns a 5xx response, or a process crash mid-request, is not auto-refunded — both are visible in the ledger.
Development¶
uv sync
uv run pytest
uv run ruff check . && uv run ruff format --check .
uv run pyright
License¶
MIT