Skip to main content
GET
/
api
/
auth
/
me
Get Current User Profile
curl --request GET \
  --url https://api.example.com/api/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "user": {}
}

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

success
boolean
required
message
string
required
user
User · object
required