# Get airport This endpoint provides efficient access to airport data. - Multiple filter options (ICAO, IATA, FAA, local identifier) - Automatic exclusion of deleted/inactive airports Endpoint: GET /api/v2/airports/{airportCode} Version: 2.0.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 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 Example: "AT"