Skip to content
Seal
Esc
↑↓navigate↵open⌘Jpreview

Get billing summary for an organization

Returns the current plan, active subscription (if any), and recent invoices. Requires the billing:read scope.

GET/organizations/{organizationSlug}/billing
Authorization
AuthorizationBearer token · headerrequired

Pass your API key as a Bearer token. API keys are scoped to specific operations — configure scopes in your organization's Settings → Developer → API Keys.

Path parameters
organizationSlugstringrequired
Responses
200

Billing summary

planstringrequired
subscriptionobject | nullrequired
Show properties
idstring
statusstring
currentPeriodStartstring<date-time> | null
currentPeriodEndstring<date-time> | null
cancelAtPeriodEndboolean
canceledAtstring<date-time> | null
pastDueSincestring<date-time> | null
invoicesobject[]required
Show properties
Array of object
idstring
statusstring
amountDueinteger
currencystring
hostedInvoiceUrlstring | null
paidAtstring<date-time> | null
createdAtstring<date-time>
401

Missing or invalid API key

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

403

Forbidden (insufficient scope or org mismatch)

typestringrequired

Machine-readable error code

statusintegerrequired

HTTP status code

titlestringrequired

Human-readable error message

detailsobject

Field-level validation errors

Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.seal.nyc/api/v1/organizations/string/billing" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "plan": "string",
  "subscription": {
    "id": "string",
    "status": "string",
    "currentPeriodStart": "2019-08-24T14:15:22Z",
    "currentPeriodEnd": "2019-08-24T14:15:22Z",
    "cancelAtPeriodEnd": true,
    "canceledAt": "2019-08-24T14:15:22Z",
    "pastDueSince": "2019-08-24T14:15:22Z"
  },
  "invoices": [
    {
      "id": "string",
      "status": "string",
      "amountDue": 0,
      "currency": "string",
      "hostedInvoiceUrl": "string",
      "paidAt": "2019-08-24T14:15:22Z",
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ]
}