2

I'm using the Amadeus Flight Inspiration Search sandbox API.

Here's an example of a JSON response:

{
      "destination": "WAS",
      "departure_date": "2017-04-01",
      "return_date": "2017-04-15",
      "price": "126.40",
      "airline": "DL"
    }

I looked through the other Amadeus APIs and could not find one that pulls the name of the airline based on the airline code (in the example above, "airline": "DL"). How can we get the actual airline name?

Rafik EL YAAGOUBI
  • 392
  • 1
  • 5
  • 20
Sarah
  • 21
  • 3

1 Answers1

2

You can get this from Open Travel Data, specifically the Airlines file.

Tadhg
  • 561
  • 5
  • 15
  • 1
    Thanks for the feedback - we link to this at the bottom of the Getting Started page, but we'll find a way to make it more obvious. We also used to offer an API for this, but we removed it because it was used so infrequently! – Tadhg Mar 03 '17 at 13:34