MyAPI is a free and open RESTful API project, built with Node.js, Express, and TiDB, designed to provide sample user and post data.
It is deployed on Railway and uses TiDB as a scalable cloud database, with DBeaver for database management.
🌍 Live API URL: https://myapi-from-boss-free-use.up.railway.app
- GET
/
- Returns an HTML page listing available API endpoints.
- Try it: View API Homepage
- GET
/users
- Returns a list of sample users stored in the database.
- Example Response:
[ { "id": 1, "name": "John Doe", "detail": "Software developer from the USA.", "age": 28, "sex": "Male", "birth": "1996-05-14" }, ... ]
👉 Try it: View API Users