Airport MetaData
Airport MetaData
Note: Airline MetaData is static master data and does not change frequently. You are advised to call this API once per day.
Airport MetaData API returns the list of available airports grouped by country. This API does not require any request payload and is exposed as a GET endpoint.
The response contains country-level airport information including airport code, airport name, and city name. This API is typically used to populate airport master data to search airport information.
Airport MetaData Request
Note: This API does not accept any request parameters, you only need to invoke the endpoint using an HTTP GET method after successfully login.
Airport MetaData Response
The Airport MetaData response returns grouped airport information for their respective countries.
| Tag | Attributes | Description |
|---|---|---|
| success (Boolean) |
Indicates whether the request was processed successfully. Example: true |
|
| statusCode (Integer) |
Response status code. Example: 1 |
|
| statusMessage (String) |
Response status message. Example: SUCCESS |
|
| actionType (String) |
Action performed by the API. Example: Fetch Airports |
|
| conversationId (String) |
Unique identifier for tracking the request lifecycle. | |
| commonData | commonData (Object) |
Contains common response-level information. |
| productCode (String) |
Product code of the item being requested. For Flight, value is A. |
|
| culture (String) |
Language or culture code used for the response. Example: en |
|
| data | data (List) |
List of countries containing their respective airport information. |
| country (String) |
Name of the country. | |
| countryCode (String) |
ISO country code. Example: AU, PF. |
|
| airports | airports (List) |
List of airports belonging to the specified country. |
| airportCode (String) |
IATA airport code. Example: SYD, AAA. |
|
| airportName (String) |
Name of the airport. | |
| cityName (String) |
City where the airport is located. |