Organizations

Discover public organizations and look up by invite code.

Search organizations

GET /v1/orgs

bash
curl https://api.bzzz.sh/v1/orgs?search=acme

Returns public organizations matching the search query. Results include id, name, slug, logoUrl, brandColor, description, and subscriberCount.

Get organization details

GET /v1/orgs/{orgSlug}

bash
curl https://api.bzzz.sh/v1/orgs/acme

Returns 404 if the organization is private or doesn't exist.

Look up by invite code

GET /v1/orgs/invite/{inviteCode}

bash
curl https://api.bzzz.sh/v1/orgs/invite/clx123abc

Works for both public and private organizations. Returns the same fields as the detail endpoint.