Skip to content

List organizations you belong to

GET
/me/organizations
curl --request GET \
--url https://api.perstat.io/me/organizations \
--header 'Authorization: Bearer <token>'

Returns all organizations the caller is a member of, each with its id, name, and URL slug. This is the natural discovery entry point for any integration.

Media typeapplication/json
Array<object>
object
id
required
string
name
required
string
slug
required
string
Examplegenerated
[
{
"id": "example",
"name": "example",
"slug": "example"
}
]