# Get airport This endpoint provides efficient access to airport data. Features: - Filter by multiple codes (ICAO, IATA, FAA, local identifier) - Automatically exclude deleted or inactive airports Endpoint: GET /api/v2/airports/{airportCode} Version: 2.4.0 Security: X-Api-Client-Id, X-Auth-Token ## Path parameters: - `airportCode` (string, required) Airport reference code (FL3XX ID, IATA, ICAO, FAA, or local identifier). Example: "LMML" ## Response 200 fields (application/json): - `id` (string) Unique identifier for the airport. Example: "123" - `name` (string) Full name of the airport. Example: "Vienna International Airport" - `icao` (string) ICAO code of the airport. Example: "LOWW" - `iata` (string) IATA code of the airport. Example: "VIE" - `faa` (string) FAA code of the airport (US airports only). Example: "KJFK" - `localIdentifier` (string) Local identifier code for the airport. Example: "ABC" - `servedCity` (string) City primarily served by the airport. Example: "Vienna" - `timezone` (string) Timezone of the airport. Example: "Europe/Vienna" - `location` (object) - `location.country` (string) Country name where the airport is located Example: "Austria" - `location.countryCode` (string) ISO country code alpha-3 Example: "AUT" ## Response 400 fields ## Response 401 fields ## Response 403 fields