This is a live REST API running on Express.js. Test CRUD operations and see actual HTTP responses!
http://cse135.site:3004/api/itemsLoading...
Retrieve the complete list of items.
GET /api/items
Retrieve a specific item by ID.
GET /api/items/
Try an ID that doesn't exist to see a 404 response.
Create a new item. Returns 201 Created on success.
POST /api/items
Update an existing item's name or completion status.
PUT /api/items/
Remove an item permanently.
DELETE /api/items/
View the source: rest-live-demo.js