Build at high performance Edge API Routes with Next.js. Using the Edge Runtime, Edge API Routes on standard Web APIs, Neon Database, Middleware and JSON web token (JWT) for authentication purpose.
API Endpoints | Method | Authentication | API Full link |
---|---|---|---|
Status | GET | Not required | https://reebaal-books-api.vercel.app/api/status |
List of books available | GET | Not required | https://reebaal-books-api.vercel.app/api/books |
Check by id | GET | Not required | https://reebaal-books-api.vercel.app/api/books/14 |
Get in a specific limit | GET | Not required | https://reebaal-books-api.vercel.app/api/books?limit=7 |
To get authorization | POST | Required | https://reebaal-books-api.vercel.app/api/api-clients |
To place an order | POST | Required | https://reebaal-books-api.vercel.app/api/orders |
To view the list of all orders | GET | Required | https://reebaal-books-api.vercel.app/api/orders |
To check order by id | GET | Required | https://reebaal-books-api.vercel.app/api/orders/rEEpm |
To update order by id | PATCH | Required | https://reebaal-books-api.vercel.app/api/orders/rEEpm |
To delete order by id | DELETE | Required | https://reebaal-books-api.vercel.app/api/orders/rEEpm |