Things

by Mimo

Welcome to the Things API documentation. Here, you can find information on how to use the API.

Example Request

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

Example Response

response.json
1{
2 "id": 1,
3 "name": "Wireless Earbuds",
4 "description": "Compact, portable earbuds for music and calls.",
5 "category": "Electronics",
6 "rating": 2.5
7}