cURL
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>" ] } }
Useful for verifying that your JWT contains the expected roles, permissions, and custom claims.
Auth0 JWT access token
Decoded token claims for the authenticated user
Show child attributes