# Track London to New York Flight Prices

**Use case:** 

Live Google Flights results for LHR to JFK — fares, carriers and durations for transatlantic routes.

## Input

```json
{
  "flightQueries": [
    {
      "origin": "LHR",
      "destination": "JFK",
      "departureDate": "+45"
    }
  ],
  "hotelQueries": [],
  "currency": "USD",
  "language": "en",
  "country": "us",
  "maxItemsPerQuery": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "origin": {
    "label": "From",
    "format": "string"
  },
  "destination": {
    "label": "To",
    "format": "string"
  },
  "departure_date": {
    "label": "Date",
    "format": "string"
  },
  "trip_type": {
    "label": "Trip type",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "airlines": {
    "label": "Airlines",
    "format": "array"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "duration_minutes": {
    "label": "Minutes",
    "format": "integer"
  },
  "departure_time": {
    "label": "Departure time",
    "format": "string"
  },
  "arrival_time": {
    "label": "Arrival time",
    "format": "string"
  }
}
```

## About this Actor

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