# Track Peak Season Holiday Flights for Families

**Use case:** 

Monitor flight prices for families during peak holiday seasons from a specific region to popular vacation spots. Leverage this intelligence to advise clients on

## Input

```json
{
  "originAirport": "SFO",
  "destinationAirport": "MCO",
  "outboundDate": "2024-12-20",
  "returnDate": "2024-12-27",
  "adults": 2,
  "children": 2,
  "infants": 1,
  "cabinClass": "economy",
  "currency": "USD",
  "language": "en",
  "country": "US",
  "maxStops": "one_stop",
  "airlines": [],
  "excludeAirlines": [
    "FR",
    "NK"
  ],
  "maxResults": 20,
  "directOnly": false,
  "excludeBasicEconomy": false,
  "useApifyProxy": true
}
```

## Output

```json
{
  "price": {
    "label": "Price"
  },
  "airline": {
    "label": "Airline"
  },
  "departureAirport": {
    "label": "Departure airport"
  },
  "departureTime": {
    "label": "Departure time"
  },
  "arrivalAirport": {
    "label": "Arrival airport"
  },
  "arrivalTime": {
    "label": "Arrival time"
  },
  "durationMinutes": {
    "label": "Duration minutes"
  },
  "stops": {
    "label": "Stops"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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