Endpoint: things

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

Request

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

Response

response.json
1{
2 "id": 3,
3 "name": "Reusable Water Bottle",
4 "description": "Eco-friendly water bottle to stay hydrated.",
5 "category": "Fitness",
6 "rating": 1.2
7}