Users API

Use the Users API to retrieve the authenticated user's profile details. Access is guarded by standard Bearer token authentication in the HTTP header.

Fetch User Profile

Invoke the profile endpoint by passing the JWT access token received during the token exchange step.

GET https://accounts.elixpo.com/api/auth/me
Authorization: Bearer ACCESS_TOKEN

Response:

{
  "id": "u_9b7bf7c2-866e-ee9d-3e48-ee9d3e488297",
  "email": "developer@elixpo.com",
  "displayName": "swift-falcon",
  "provider": "email",
  "emailVerified": true
}

Profile Fields

FieldTypeDescription
idStringThe stable, unique UUID representing the user across all Elixpo products.
emailStringThe user's registered email address.
displayNameStringThe user's username/nickname (e.g. swift-falcon).
providerStringAuthentication provider (e.g. email, google, github).
emailVerifiedBooleanWhether the user's email has been verified via OTP code.