Docs

GET /v1/account

Call GET /v1/account to read plan, rate tier, and wallet millicents for your own UI. It is authenticated and not billed. The Node helper is client.account().

Authenticated. Use this to show remaining balance in your own UI. The Node helper is client.account().

Response

plan, rateTier (free | paid), and wallet.balanceMillicents plus autoReloadEnabled.

GET /v1/account
{
  "plan": "trial",
  "rateTier": "free",
  "wallet": {
    "balanceMillicents": 500000,
    "autoReloadEnabled": false
  }
}