v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
Users

Get Profile

Retrieves basic information about the authenticated user.

get/v1/users/me/profile

Response

OK. Returns a Profile resource containing information about the requesting user.

accountIdnumber

The unique ID for the user's account.

usernamestring

Username of the user.

emailstring

Email of the user.

fullNamestring

Full name of the user.

idnumber

ID of the user.

Example response

{
  "accountId": 100,
  "username": "johndoe",
  "email": "john-doe@example.com",
  "fullName": "John Doe",
  "id": 101,
  "avatar": {
    "type": "url",
    "link": "https://www.gravatar.com/avatar/00000000000000000000000000000000?s=200&d=404"
  }
}