1fetch("https://things.mimo.dev/api/things/11") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1{2 "id": 11,3 "name": "Noise-Canceling Headphones",4 "description": "Blocks out external noise for better sound.",5 "category": "Electronics",6 "rating": 1.37}