# Track Flight Prices from New York to Los Angeles

**Use case:** 

Live Google Flights itineraries and prices for JFK to LAX, with airline, duration and stop count.

## Input

```json
{
  "flightQueries": [
    {
      "origin": "JFK",
      "destination": "LAX",
      "departureDate": "+30"
    }
  ],
  "hotelQueries": [],
  "currency": "USD",
  "language": "en",
  "country": "us",
  "maxItemsPerQuery": 3,
  "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.