The API service location is `https://plib-api.quasar.kim/v0`.
Prefix this to endpoint paths below for a full URL.
Endpoints without authentications required:
- GET /: service status
- GET /auth/token/{user_id}: returns an auth token for user `user_id`.
Endpoints with authentication required:
- To use these endpoints, first retrieve an auth token from the `/auth/token/{user_id}` endpoint
then attach it as a HTTP bearer auth token.
- GET /reservations
* parameters: `room_type`, `date`
* returns all reservations made on room of type `room_type` at `date`.
* Example: `/reservations?date=2025-06-16&room_type=11`: all reservations of PC at 2025-06-16
- GET /rooms
* parameters: `room_type`, `date`
* returns all rooms available for reservation of type `room_type` at `date`.
- GET /rooms/{room_id}/reservations: returns all reservations
* parameters: `date`
* returns all reservations of room `room_id` at `date`.