API Documentation

Documentation for authentication and user-related API endpoints.

POST /ServiceLoginAuth

Authentication service that works similarly to the classic Google Sign-In page.

GET /api/me

Returns information about the currently authenticated user.

Used to retrieve user statistics and determine whether the user is currently logged in.

{
  "loggedIn": true,
  "username": "Loremipsum",
  "email": "emailname@domain.com",
  "profilePicture": "placeholder.png"
}

Note: The email field may also contain a username instead of an email address.