v1

latestOpenAPI 3.0.1Apache-2.02026-07-17105189262.9 KB
Default

Airline Price Index

The Flight Ticket Price Index API provides comprehensive data on airline ticket prices, including the average daily ticket price and its percentage change (price index). This data, collected weekly and projected two weeks ahead, aggregates daily prices and indexes from the 50 busiest and largest airports across the USA. The dataset includes detailed information on airlines, dates, and average ticket prices, offering valuable insights for market analysis and pricing strategies.

The price index is calculated as percentage change of average daily ticket price from the previous weekly reading. Raw ticket prices data is available for Enterprise users. Contact us to inquire about the raw price data.

get/airline/price-index

Query parameters

airlinestring required

Filter data by airline. Accepted values: <code>united</code>,<code>delta</code>,<code>american_airlines</code>,<code>southwest</code>,<code>southern_airways_express</code>,<code>alaska_airlines</code>,<code>frontier_airlines</code>,<code>jetblue_airways</code>,<code>spirit_airlines</code>,<code>sun_country_airlines</code>,<code>breeze_airways</code>,<code>hawaiian_airlines</code>

fromstring date required

From date <code>YYYY-MM-DD</code>.

tostring date required

To date <code>YYYY-MM-DD</code>.

Response

successful operation

airlinestring

Airline name

fromstring

From date

tostring

To date

Example response

{
  "data": [
    {
      "date": "date",
      "priceIndex": 0.8008282,
      "dailyAvgPrice": 6.0274563
    },
    {
      "date": "date",
      "priceIndex": 0.8008282,
      "dailyAvgPrice": 6.0274563
    }
  ],
  "from": "from",
  "to": "to",
  "airline": "airline"
}