1fetch("https://pokedex.mimo.dev/api/location/temple-of-sinnoh") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1{2 "areas": [3 {4 "name": "temple-of-sinnoh-area",5 "url": "https://pokedex.mimo.dev/api/location-area/1021/"6 }7 ],8 "game_indices": [],9 "id": 1027,10 "name": "temple-of-sinnoh",11 "names": [],12 "region": {13 "name": "hisui",14 "url": "https://pokedex.mimo.dev/api/region/9/"15 }16}