GET
/
api
/
auth
/
session
Get Session
curl --request GET \
  --url https://api.example.com/api/auth/session

Response (authenticated)

{
  "user": {
    "id": "user-abc12345",
    "name": "John Doe",
    "email": "john@example.com",
    "avatar": "https://...",
    "onboardingCompleted": true,
    "isSuperAdmin": false
  }
}

Response (not authenticated)

{
  "user": null
}
Returns 401 status code when not authenticated.