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))
1{2 "id": 15,3 "name": "Cookware Set",4 "description": "Complete set for cooking delicious meals.",5 "category": "Kitchenware",6 "rating": 4.87}