# Check If a Flight Fare Is Low or High

**Use case:** 

Get Google’s price insight for a route: cheapest, median and highest price, the price level (low/typical/high), usual range and a booking tip.

## Input

```json
{
  "origin": "LAX",
  "destination": "CDG",
  "departDate": "2026-09-20",
  "tripType": "one_way",
  "routes": [
    "JFK-LAX-2026-09-15",
    "BOS-SFO-2026-10-02"
  ],
  "cabinClass": "economy",
  "stops": "any",
  "adults": 1,
  "children": 0,
  "infantsInSeat": 0,
  "infantsOnLap": 0,
  "currency": "USD",
  "market": "us",
  "maxResultsPerRoute": 0,
  "onlyBestFlights": false,
  "includePriceInsights": true,
  "monitorMode": false,
  "monitorKey": "default",
  "deduplicateResults": true,
  "maxRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "tripGroup": {
    "label": "Search"
  },
  "leg": {
    "label": "Leg"
  },
  "origin": {
    "label": "From"
  },
  "destination": {
    "label": "To"
  },
  "departSearchDate": {
    "label": "Depart"
  },
  "returnSearchDate": {
    "label": "Return"
  },
  "cabinClass": {
    "label": "Cabin"
  },
  "currency": {
    "label": "Cur"
  },
  "optionsFound": {
    "label": "# Options"
  },
  "cheapestPrice": {
    "label": "Cheapest"
  },
  "medianPrice": {
    "label": "Median"
  },
  "highestPrice": {
    "label": "Highest"
  },
  "priceLevel": {
    "label": "Price level"
  },
  "usualRange": {
    "label": "Usual range"
  },
  "bookingTip": {
    "label": "Booking tip"
  },
  "googleFlightsUrl": {
    "label": "Link"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Flights Scraper - Fares, Routes & Price Tracking](https://apify.com/scrapesage/google-flights-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/google-flights-scraper) to learn more, explore other use cases, and run it yourself.