Docs menu

REST API

Users

Read the PAT owner's user profile and preferences.

GET/v2/users/me

Get current user

Get the current authenticated user's account information.

Request example

curl --request GET \
  --url "https://api.callabo.ai/v2/users/me" \
  --header "Accept: application/json" \
  --header "Authorization: Bearer $CALLABO_PAT"

Success responses

Response body

  • idRequiredinteger
    User identifier.
  • nameRequiredstring
    User name.
  • emailRequiredstring (email)
    User email address.
  • phone_numberstring | null
    User phone number.
  • statusRequiredUserStatus
    User account status.
  • companyRequiredstring
    User's company.
  • providersRequiredAuthInfoProvider[]
    Authentication providers linked to the user account.
  • localeRequiredUserLocale
    User locale.
  • referrer_codestring | null
    User referral code.

Response example

{
  "id": 1,
  "name": "Example",
  "email": "developer@example.com",
  "status": "created",
  "company": "string",
  "providers": [
    "email"
  ],
  "locale": "ko"
}

Errors

StatusError codeDescription
401UNAUTHORIZEDUnauthenticated request
403FORBIDDENInsufficient requester permissions
422β€”Unprocessable content
429RATE_LIMIT_EXCEEDEDRequest limit exceededLearn more
Β© 2026 Return Zero, Inc.