Unstatus API

Organization

Get information about your organization.

Get Organization

GET/api/v1/organizationFree

Returns information about the organization associated with your API key, including subscription status.

curl https://unstatus.app/api/v1/organization \
  -H "Authorization: Bearer usk_your_key"
Response
{
  "data": {
    "id": "org_...",
    "name": "Acme Inc",
    "slug": "acme",
    "logo": null,
    "createdAt": "2025-01-01T00:00:00Z",
    "subscriptionActive": true,
    "subscriptionPlanName": "Pro",
    "cancelAtPeriodEnd": false,
    "plan": "pro"
  }
}

The plan field is a convenience field that returns "pro" or "free" based on the subscription status. Use it to check which tier your API key has access to.

On this page