1fetch("https://rickandmorty.mimo.dev/api/location/14") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1{2 "id": 14,3 "name": "Giant's Town",4 "type": "Fantasy town",5 "dimension": "Fantasy Dimension",6 "residents": [7 "https://rickandmorty.mimo.dev/api/character/89",8 "https://rickandmorty.mimo.dev/api/character/399",9 "https://rickandmorty.mimo.dev/api/character/400"10 ],11 "url": "https://rickandmorty.mimo.dev/api/location/14",12 "created": "2017-11-18T11:31:15.248Z"13}