Easy API for getting user's data. The API uses PostgreSQL to store the data.
| Type | EndPoint | Description |
|---|---|---|
| DELETE | /api/v1/user/nick/{nick} | Delete user from the database by user's nick |
| DELETE | /api/v1/user/uuid/{uuid} | Delete user from the database by user's uuid |
| POST | /api/v1/user | Insert user into the database |
| GET | /api/v1/user/list | Return users in json array |
| GET | /api/v1/user/nick/{nick} | Return user by his nickname |
| GET | /api/v1/user/uuid/{uuid} | Return user by his uuid |
The API is protected only by the API Key
Written by JustDrven