Endpoint: things

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

Request

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

Response

response.json
1{
2 "id": 14,
3 "name": "Portable Charger",
4 "description": "Compact power bank for charging devices.",
5 "category": "Electronics",
6 "rating": 4.6
7}