Skip to main content
GET
/
organizations
/
me
Get the current organisation
curl --request GET \
  --url https://apix.spotzee.com/api/client/organizations/me \
  --header 'Authorization: Bearer <token>'
{
  "organization": {
    "id": 7,
    "username": "acme",
    "created_at": "2026-04-28T05:14:00.000Z",
    "updated_at": "2026-04-28T05:14:00.000Z",
    "domain": "acme.example"
  },
  "role": "member"
}

Documentation Index

Fetch the complete documentation index at: https://docs.spotzee.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Organisation-scoped admin API key (ok_…). Pass in the Authorization: Bearer <key> header. Used to manage projects and other organisation-level resources.

Response

Organisation and caller role.

Identifies the organisation and the caller’s role on that organisation.

organization
object
required

Top-level tenant. Owns one or more projects and is the security boundary for organisation API keys. Internal billing, usage counters, and identity-provider configuration are not exposed on the public API.

role
enum<string>
required

Role the calling key or session holds on the organisation.

Available options:
member,
admin,
owner