List of the world's countries
1fetch("https://airports.mimo.dev/api/countries/302789") 2 .then((res) => res.json())3 .then((json) => console.log(json))4 .catch((error) => console.error(error))
1{2 "id": "302789",3 "code": "AR",4 "name": "Argentina",5 "continent": "SA",6 "wikipedia_link": "https://en.wikipedia.org/wiki/Argentina",7 "keywords": "Aeropuertos de Argentina"8}