# Google Flights Fare Monitor

**Use case:** 

Monitor Google Flights routes for fares, airlines, stops, schedules, duration, cabins, airports, currencies, and booking details.

## Input

```json
{
  "origin": "BOS",
  "destination": "CDG",
  "departureDate": "2026-10-05",
  "returnDate": "2026-10-12",
  "adults": 2,
  "children": 1,
  "cabinClass": "premium_economy",
  "maxResults": 50,
  "currency": "EUR",
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "airline": {
    "label": "Airline",
    "format": "text"
  },
  "flightNumber": {
    "label": "Flight number",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "durationMinutes": {
    "label": "Duration (min)",
    "format": "number"
  },
  "departureTime": {
    "label": "Departure",
    "format": "text"
  },
  "arrivalTime": {
    "label": "Arrival",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "text"
  },
  "cabinClass": {
    "label": "Cabin class",
    "format": "text"
  },
  "url": {
    "label": "Search URL",
    "format": "link"
  }
}
```

## About this Actor

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