fastmon Docs
Organizations

List Organizations

Report an issue

List organizations the caller has access to (direct or via partner).

An API key sees only the organizations it was issued for, not every one its owner belongs to. Without that cut the reach restriction would still hold on every other route but leak the tenant list here, which is exactly the thing a key bound to one customer must not learn about the others.

A credential the organization owns has no memberships to walk at all: its reach IS the answer, so it is returned directly rather than derived from a person who does not exist.

Authorization

bearerAuth
AuthorizationBearer <token>

API token generated from the fastmon dashboard (Account → API Token) or at organization level (fmo_…, one that outlives its creator). Send as Authorization: Bearer fm_... or paste the full token (including its prefix) into the Authorize dialog.

In: header

Query Parameters

offset?Offset
Range0 <= value
Default0
limit?Limit
Range1 <= value <= 100
Default50

Response Body

application/json

application/json

application/json

application/json

GET
/organizations
curl -X GET "https://example.com/organizations"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "is_active": true,      "review_status": "pending",      "intended_domain": "string",      "storage": "shared",      "clickhouse_table": "string",      "plan": "none",      "is_partner": true,      "ai_enabled": true,      "synthetic_enabled": true,      "mcp_enabled": true,      "role": "owner",      "permissions": [],      "access": "member"    }  ],  "meta": {    "total": 0,    "limit": 0,    "offset": 0,    "has_more": true  }}