Endpoint: things

GEThttps://things.mimo.dev/api/things/15

Request

GETthings
1fetch("https://things.mimo.dev/api/things/15")
2 .then((res) => res.json())
3 .then((json) => console.log(json))
4 .catch((error) => console.error(error))

Response

response.json
1{
2 "id": 15,
3 "name": "Cookware Set",
4 "description": "Complete set for cooking delicious meals.",
5 "category": "Kitchenware",
6 "rating": 4.8
7}