Look up airport information by IATA code or ICAO code. Get airport name, location, and detailed data from our database of 40,000+ airports worldwide.
{
"status": "ok",
"error": null,
"data": {
"icao": "KMCI",
"iata": "MCI",
"name": "Kansas City International Airport",
"city": "Kansas City",
"state": "Missouri",
"country": "US",
"elevation": 1026,
"lat": 39.2975997925,
"lon": -94.7138977051,
"tz": "America/Chicago",
"city_info": {
"name": "Kansas City",
"altName": "",
"country": "US"
}
}
}






Look up airport information by IATA code or ICAO code. Get airport name, location, and detailed data from our database of 40,000+ airports worldwide.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/airports?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ icao, iata, name, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseUse 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.
Look up airports by IATA code to get airport names for display. With premium plans, get coordinates for map plotting and elevation for aviation applications.
Copy a working request, or install a typed SDK. Same endpoint, same key.
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);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog