Skip to main content
GET
/
api
/
auth
/
me
Return the authenticated user's decoded token claims
curl --request GET \
  --url https://api.example.com/api/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "sub": "<string>",
    "userId": "<string>",
    "emailVerified": true,
    "roles": [
      "<string>"
    ],
    "permissions": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Response

200 - application/json

Decoded token claims for the authenticated user

data
object
required