XreplyAIDevelopers
API ReferenceBilling

Get the current subscription and quota

Requires scope: `billing:read`. Read-only. Billing mutations (subscribe, cancel, change plan) are dashboard-only.

GET
/billing/subscriptions/current
AuthorizationBearer <token>

A personal API key created in the dashboard (Starter, Pro, and Team plans).

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/billing/subscriptions/current"
{  "subscription": {    "id": 6001,    "status": "active",    "current_period_end": "2026-08-01T00:00:00Z",    "cancel_at_period_end": false,    "days_until_renewal": 19  },  "tier": "pro",  "quota": {    "tier": "pro",    "daily_limit": 100,    "replies_used_today": 12,    "replies_remaining_today": 88,    "resets_at": "2026-07-13T23:59:59Z"  },  "max_schedule_days": 30}