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