API Routes
GET
/api/usersFetch all users from the user service
→ https://api.example.com/v1/users100/min
POST
/api/usersCreate a new user
→ https://api.example.com/v1/users50/min
GET
/api/productsProduct catalog endpoint
→ https://api.example.com/v2/products200/min
POST
/api/ordersCreate a new order
→ https://api.example.com/v1/orders30/min
GET
/api/orders/{id}Get order by ID
→ https://api.example.com/v1/orders/:id
PUT
/api/orders/{id}Update an existing order
→ https://api.example.com/v1/orders/:id50/min
DELETE
/api/orders/{id}Cancel an order
→ https://api.example.com/v1/orders/:id20/min
GET
/api/healthHealth check endpoint
→ https://api.example.com/health