Fetch a list of items
GET http://localhost:3002/items
A GET to the /items endpoint allows your application to fetch a list of all items.
Look under Examples to view an example response.
HEADERS
| Key | Datatype | Required | Description | 
|---|---|---|---|
| Authorization | string | ||
| Content-Type | string | 
RESPONSES
status: OK
[{"item_id":"304829","name":"delicata","price":"0.79","unit":"lb","currency":"USD"},{"item_id":"304830","name":"butternut","price":"0.59","unit":"lb","currency":"USD"},{"item_id":"304831","name":"acorn","price":"0.49","unit":"lb","currency":"USD"}]