Skip to main content
GET
/
api
/
users
/
me
Get current user
curl --request GET \
  --url https://api.example.com/api/users/me
{
  "id": "<string>",
  "is_active": true,
  "is_superuser": true,
  "is_verified": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "email": "<string>",
  "first_name": "<string>",
  "last_name": "<string>"
}

Response

Successful Response

Represents a user account with profile information.

id
string
required

Unique user identifier with 'intuser_' prefix

is_active
boolean
required

Whether this user account is currently active

is_superuser
boolean
required

Whether this user has superuser/admin privileges

is_verified
boolean
required

Whether this user's email is verified

created_at
string<date-time>
required

When this user account was created

updated_at
string<date-time>
required

When this user account was last updated

email
string | null

User's email address

first_name
string | null

User's first name

last_name
string | null

User's last name