Endpoint: things

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

Request

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

Response

response.json
1{
2 "id": 28,
3 "name": "Handheld Fan",
4 "description": "Compact fan to keep you cool on the go.",
5 "category": "Electronics",
6 "rating": 3.4
7}