1fetch("https://rickandmorty.mimo.dev/api/location/57") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1{2 "id": 57,3 "name": "Gear World",4 "type": "Planet",5 "dimension": "unknown",6 "residents": [7 "https://rickandmorty.mimo.dev/api/character/282",8 "https://rickandmorty.mimo.dev/api/character/447",9 "https://rickandmorty.mimo.dev/api/character/448"10 ],11 "url": "https://rickandmorty.mimo.dev/api/location/57",12 "created": "2017-12-31T19:21:17.276Z"13}