API Project alta_store is API project of fake e-commerce which you can test to get response as a customer
Endpoints which not required any authentication :
- Browsing product :
GET /products/:category/:type
- Input product into cart :
POST /carts/:user_id/:product_id
- Product in cart :
GET /carts
- Register :
POST /users
- Login :
POST/jwt/user
Endpoints which need authentication to get 200 response :
- Checkout :
POST /jwt/checkout/:user_id
- Transaction :
POST /jwt/transaction/:user_id