Skip to content

Airport MetaData

/api/v1/flight/airports  

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.
Airport response
{
  "meta": {
    "success": true,
    "statusCode": 1,
    "statusMessage": "SUCCESS",
    "actionType": "Fetch Airports",
    "conversationId": "c1f2a9b4-23a7-4e92-9c9f-45e2b1c99d91"
  },
  "commonData": {
    "productCode": "A",
    "culture": "en"
  },
  "data": [
    {
      "country": "Australia",
      "countryCode": "AU",
      "airports": [
        {
          "airportCode": "ABA",
          "airportName": "Arrabury Airport",
          "cityName": "Arrabury"
        },
        {
          "airportCode": "SYD",
          "airportName": "Sydney Airport",
          "cityName": "Sydney"
        }
      ]
    },
    {
      "country": "French Polynesia",
      "countryCode": "PF",
      "airports": [
        {
          "airportCode": "AAA",
          "airportName": "Anaa Airport",
          "cityName": "Anaa"
        }
      ]
    }
  ],
  "version": "1.0.0"
}