Current Stripe-backed plan prices and rate limits
Return the current price, included request allowance and overage rate for every plan. **Public — no authentication required.** Numbers come from Stripe and are cached for 24 hours, so this is the authoritative source for what the API actually charges rather than a hardcoded table. Check `source` before displaying: `stripe` or `cache` are live, while `fallback` means Stripe was unreachable and the cache was empty, so the values are built-in defaults that may be stale. All money is in **cents**, and `overage_unit_cents` is fractional — `0.35` means $0.0035 per request.
Response Body
application/json
curl -X GET "https://example.com/pricing"{ "currency": "string", "fetched_at": "2019-08-24T14:15:22Z", "plans": { "property1": { "annual_cents": 0, "included_requests": 0, "monthly_cents": 0, "overage_unit_cents": 0 }, "property2": { "annual_cents": 0, "included_requests": 0, "monthly_cents": 0, "overage_unit_cents": 0 } }, "source": "stripe"}Your request history (audit log)
Return the authenticated account's recent API requests — URL, endpoint, status, latency and which key made the call. Useful for reconciling a bill against actual usage, or finding which key is responsible for unexpected traffic. Paginate with `limit` (1-200, default 50) and `offset`, newest first. Unmetered — reading your own history never consumes quota.
Python SDK
pip install wellmarked — sync and async clients, typed responses, typed exceptions, and automatic job polling.