v23

latestOpenAPI 3.0.1raw.githubusercontent.com2026-08-0127977.1 KB
OAuth2-specific

Get current user info

Returns detailed information about the currently authenticated user. Requires an OAuth2 access token (Bearer header).

get/api/v1/authenticated/me

Response

successful

idinteger
emailsstring[]
slack_idstring nullable
github_usernamestring nullable

Example response

{
  "id": 42,
  "emails": [
    "orpheus@hackclub.com"
  ],
  "slack_id": "U0266FRGP",
  "github_username": "orpheus",
  "trust_factor": {
    "trust_level": "blue"
  }
}