GET
/products
curl \
--request GET 'http://localhost:3000/api/v1/products'
Response examples (200)
[
{
"id": "string",
"name": "string",
"description": "string",
"image": "string",
"price": 42.0
}
]
Response examples (500)
{
"message": "Product not found"
}