I have enabled access to the Google QPX Express API to do some analytics on Delta ticket prices and fare classes. But the answer seems to include only flights from a limited set of airlines.
For example, the following query
{ "request": { "passengers": { "adultCount": 1 }, "slice": [ { "origin": "JFK", "destination": "SFO", "date": "2015-02-15", "maxStops": 0 } ], "solutions": 500 } }
returns flights only for AS (Alaska Airlines), US (US Air), VX (Virgin America), B6 โโ(JetBlue) and UA (United Airlines).
If I add "permittedCarriers": [DL] , I get an empty answer. Similarly, I get an empty answer if I don't leave permittedCarriers and look for flights between Delta hubs (for example, "origin": "ATL", "destination": "MSP" ).
The documentation suggests that QPX Express should have most of the tickets available. Is there something wrong with my request? Why can't I see any results for Delta?
source share