Skip to content

Get Current User Info

Retrieves the authenticated user's basic profile.

Endpoint

GET api/public/user/me

Authorization

This route requires a valid Bearer token.

Request Example

curl -X GET http://127.0.0.1:8000/api/public/user/me \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"

Response Example

{
  "id": 7,
  "name": "Lawunn",
  "email": "lawunnkhaing16@gmail.com",
  "company": "La"
}