Same surface as Stripe's core API — charges, customers, subscriptions, invoices, payouts — but billed per call, not per transaction percentage. Route through any processor you want. Fork it, swap the backend, keep the billing rails.
Create a one-time charge. Same shape as Stripe's Charges API.
curl -X POST https://api.metercall.ai/stripe/charges \
-d amount=2000 -d currency=usd \
-d source=tok_visa
Create and retrieve customers. Same IDs work across your app.
curl -X POST https://api.metercall.ai/stripe/customers \
-d email=a@b.co
Recurring billing. Plans, trials, proration — all metered one call each.
curl -X POST https://api.metercall.ai/stripe/subscriptions \
-d customer=cus_123 -d plan=pro
Generate, finalize, send, void. Same webhook events as Stripe.
Push funds to a connected bank account via your acquirer of choice.
Stripe-compatible event envelopes. Signing secret, timestamp-nonce, same retry policy.
Route through Adyen, Braintree, a crypto rail, or your own merchant account. MeterCall doesn't take a % — it just meters the call.
Hook fraud rules, FX conversion, in-house reconciliation — each added endpoint bills as its own call.
When others use your fork, you keep 30% of every call. MeterCall keeps 70% and handles payout.