GET /organization/summary — the org's plan label + authoritative member count for the #358 overview KPI strip.
GET
/api/organization/summary
const url = 'https://example.com/api/organization/summary';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/organization/summaryResponses
Section titled “Responses”Media typeapplication/json
object
member_count
required
Authoritative active-member count. The seat + MRR rollups are now
server-computed on the dedicated /organization/seat-summary endpoint
(ADR 0045 / F) — the FE does no client-side MRR math.
integer format: int64
plan_label
Plan label (None for free / no subscription).
string | null
Examplegenerated
{ "member_count": 1, "plan_label": "example"}