The chat responses are generated using Generative AI technology for intuitive search and may not be entirely accurate. They are not intended as professional advice. For full details, including our use rights, privacy practices and potential export control restrictions, please refer to our Generative AI Service Terms of Use and Generative AI Service Privacy Information. As this is a test version, please let us know if something irritating comes up. Like you get recommended a chocolate fudge ice cream instead of an energy managing application. If that occurs, please use the feedback button in our contact form!
Skip to content
Aviation Data Hub

Onboard, integrate and share structured and unstructured data with all data processing systems and applications throughout the airport.

Airport Vertical Samples¶

Create a new airport¶

  1. Find POST /airports.
  2. Change all the details in Notepad as per the example below:

    { 
        "name": "Amsterdam Schiphol Airport", 
        "iata-code": "AMS", 
        "icao-code": "EHAM", 
        "country": "NL", 
        "time-zone": "CET", 
        "geo-coordinate": { 
            "latitude": 52.308056, 
            "longitude": 4.764167
        } 
    }
    

    After changing the data structure to your needs, you can insert the data.

  3. Run the POST call.

  4. If POST is successfully executed, the response code will be 200. The airport is now created and stored in Aviation Data Hub and accessible at any time.

Query the created airport¶

For more information regarding filtering, please refer to the ADH User Manual.

  1. Go to GET /airports/{iata-code} and prepare it with the parameter set to AMS.
  2. Execute the GET request and check the server response.
  3. If the execution is successful, you will see the response code 200 and the airport details under the response body.

Adding additional attributes¶

  1. You can add additional attributes or information by using the previously edited value in Notepad. The additional attributes need to be added in a valid JSON format.
  2. Add the attribute "terminal" in Notepad, as per the example below:

    { 
        "name": "Amsterdam Schiphol Airport", 
        "iata-code": "AMS", 
        "icao-code": "EHAM", 
        "country": "NL", 
        "time-zone": "CET", 
        "geo-coordinate": { 
            "latitude": 52.308056, 
            "longitude": 4.764167
        },
        "terminal": 3
    }
    
  3. Run the POST call.

  4. When the POST request is successfully executed, the response code will be 200. The airport is now updated.
  5. Repeat the steps in Exercise 2 above, and your added attribute will be shown.