List subscriptions

GET
/billing

The organization's subscriptions. Requires billing:read, which is an admin-only scope — a member holding it still gets a 403, because a key can never exceed its owner's role.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key from Settings > API access, sent as Authorization: Bearer sp_live_.... Send exactly one credential per request; a request carrying both a bearer token and a session cookie is rejected rather than resolved by precedence.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/billing"
{  "data": [    {      "id": "string",      "status": "string",      "jobFamilyId": "string",      "activatedAt": "2019-08-24T14:15:22Z",      "cancelledAt": "2019-08-24T14:15:22Z",      "expiresAt": "2019-08-24T14:15:22Z"    }  ]}

Last updated on