Assignment 8 — Express REST API

Products REST API

Full CRUD API built with Express 5. Try every endpoint live — no Postman needed.

5 Endpoints
REST Architecture
Products

🟢 Server Health

Checking…
GET /api/health

🛒 All Products

Loading…
ID Name Category Price Stock Actions
Loading products…

🚀 API Explorer

GET /api/products Get all products (supports filters)
Response
GET /api/products/:id Get a single product by ID
Response
POST /api/products Create a new product
Response
PUT /api/products/:id Update an existing product
Response
DELETE /api/products/:id Delete a product by ID
Response