API ReferenceOrganizations
Get Organization
Retrieve an organization by ID with aggregate statistics.
GET /api/orgs/{id}
Returns an organization's details along with aggregate fundraising statistics.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Organization ID (CUID) |
Response
{
"id": "clx1234567890",
"name": "Habitat for Humanity",
"slug": "habitat-for-humanity",
"ein": "91-1234567",
"status": "ACTIVE",
"planTier": "BASIC",
"stripeOnboarded": true,
"payoutSchedule": "WEEKLY",
"createdAt": "2026-02-28T12:00:00.000Z",
"stats": {
"totalRaisedCents": 1250000,
"donationCount": 347,
"campaignCount": 5,
"donorCount": 289
}
}Last updated on 4/5/2026