Get an organization
/api/v1/organizations/{id}Returns a single organization by id with member_count and pending_invite_count. Returns 404 when the id does not name a live organization in the current Environment. Requires the hierarchy.view permission at the organization.
Authentication
Bearer Token
Authorization Option A JWT access token
API Key
X-API-Key Option B API key for management-tier access
Path Parameters
idstring Required Responses
application/json
data *OrganizationResponseDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X GET "https://auth.canopy-io.com/api/v1/organizations/value" \ -H "X-API-Key: $CANOPY_API_KEY"
{ "data": { "id": "string", "name": "string", "description": "string", "slug": "string", "metadata": {}, "member_count": 0, "pending_invite_count": 0, "created_at": "2026-04-20T12:00:00.000Z", "updated_at": "2026-04-20T12:00:00.000Z", "version": 0 } }
Tell us how we can improve this guide.