Skip to main content
GET
/
api
/
auth
/
me
curl https://rolearn.dev/api/auth/me \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "id": 1,
  "email": "dev@example.com",
  "plan": "builder",
  "subscription_status": "active",
  "tracked_games": [2753915549, 16732694052],
  "is_admin": false
}
Returns the current user’s profile including plan, subscription status, and tracked games.
curl https://rolearn.dev/api/auth/me \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "id": 1,
  "email": "dev@example.com",
  "plan": "builder",
  "subscription_status": "active",
  "tracked_games": [2753915549, 16732694052],
  "is_admin": false
}