Skip to main content
GET
/
billing
/
usage
Get current usage
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.prudra.dev/billing/usage', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "plan": "pro",
  "period": "2026-04",
  "usage": {},
  "features": {
    "sessionPayments": true,
    "autoSweep": true,
    "gasless": true,
    "treasuryYield": true,
    "webhooks": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Prudra API key. Get one at dashboard.prudra.com/settings/api-keys

Response

200 - application/json

Usage report

plan
string
required
Example:

"pro"

period
string
required
Example:

"2026-04"

usage
object
required

Current usage vs plan limits for each metric

features
object
required