Skip to main content
GET
/
api
/
v1
/
auth
/
me
Get Current User Profile
curl --request GET \
  --url https://api.example.com/api/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "email": "<string>",
  "created_at": "<string>",
  "display_name": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Public profile of the authenticated user.

id
string
required

Unique user identifier.

email
string
required

User email address.

created_at
string
required

ISO-8601 timestamp of account creation.

display_name
string | null

User-chosen display name.