Validate and retrieve airport information by code.
Travel apps need to validate airport codes and display airport names, cities, and countries. Maintaining this data manually is tedious and error-prone.
Use our Airports API to look up airport information by IATA code. Validate codes from user input or external data feeds and get structured airport data.
const res = await fetch("https://api.apiverve.com/v1/airports?iata=MCI", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);