Get List of Airports

This is an api endpoint that supplies the full NAMES and STRINGS of departure and destination airports as supported by the Travu API.

ENDPOINT URL

REQUEST TYPE: GET

LIVE & TEST BASE URL: https://api.travu.africa/api/v1/flight-airports

RESPONSE

The Response for this request should bring the AIRPORT LIST and DETAILS in the below format;

[
    {
        "AirportCode": "HZO",
        "AirportName": "HO Airport (HZO)",
        "CityCountry": "HO, Ghana",
        "City": "HO",
        "Country": "Ghana"
    },
    {
        "AirportCode": "AZR",
        "AirportName": "Adrar Airport (AZR)",
        "CityCountry": "Adrar, Algeria",
        "City": "Adrar",
        "Country": "Algeria"
    },
    {
        "AirportCode": "ALG",
        "AirportName": "Algiers (ALG)",
        "CityCountry": "Algiers, Algeria",
        "City": "Algiers",
        "Country": "Algeria"
    },
    {
        "AirportCode": "AAE",
        "AirportName": "Annaba airport (AAE)",
        "CityCountry": "Annaba, Algeria",
        "City": "Annaba",
        "Country": "Algeria"
    },
    {
        "AirportCode": "BLJ",
        "AirportName": "Batna airport (BLJ)",
        "CityCountry": "Batna, Algeria",
        "City": "Batna",
        "Country": "Algeria"
    }
]

Last updated