Skip to content
OpenRelay is in early access, and the /v1 API is stable. New capabilities ship in the changelog.
Billing

Org balance + recent transactions

Command line

The orl CLI wraps this endpoint:

orl billing balance get
GET
/v1/orgs/{orgId}/billing/balance
AuthorizationBearer <token>

OpenRelay API key. Send it as Authorization: Bearer or_… (legacy vl_… keys still work).

In: header

Path Parameters

orgId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/orgs/string/billing/balance"
{  "balanceCents": 12550,  "availableCents": 10430,  "accruedUsageCents": 2120,  "currentMonthUsageCents": 2120,  "monthlySpendLimitCents": null,  "transactions": [    {      "id": "txn_01hzy3",      "type": "stripe_deposit",      "source": "stripe",      "amountCents": 10000,      "description": "Card deposit",      "createdAt": "2026-06-28T14:03:22Z"    }  ]}