# Compare NYC to London Flight Prices (Next 3 Months)

**Use case:** 

Monitor flight price fluctuations from New York to London over the next three months to identify optimal booking times. This helps travel agencies and individua

## Input

```json
{
  "mode": "searchFlights",
  "origin": "NYC",
  "destination": "LON",
  "departDate": "2024-08-01",
  "returnDate": "2024-08-15",
  "tripType": "round-trip",
  "cabinClass": "economy",
  "adults": 1,
  "sortBy": "price",
  "maxItems": 50
}
```

## Output

```json
{
  "flightId": {
    "label": "Flight ID",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departDate": {
    "label": "Depart",
    "format": "text"
  },
  "returnDate": {
    "label": "Return",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "airline": {
    "label": "Airline",
    "format": "text"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "departTime": {
    "label": "Depart Time",
    "format": "text"
  },
  "arrivalTime": {
    "label": "Arrival Time",
    "format": "text"
  },
  "cabinClass": {
    "label": "Cabin class"
  },
  "tripType": {
    "label": "Trip type"
  },
  "deepLink": {
    "label": "Book URL",
    "format": "link"
  },
  "recordType": {
    "label": "Record type"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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