The API is hosted on Railway. There's no frontend so you'll need to make requests directly with a tool like Postman.
API URL: https://testapi-production-6225.up.railway.app
Make sure you use HTTPS or all non-GET requests won't work (they'll act like a GET requests).
All usable routes are on /users
.
POST /users
, send username
, email
, password
and age
in JSON body.
GET /users
GET /users/<id>?username=<username>&password=<password>
PATCH /users/<id>?username=<username>&password=<password>
, send new age
in JSON body
DELETE /users/<id>?username=<username>&password=<password>