# Cheapest One-Way Flights from NYC to London

**Use case:** 

Find the lowest economy flight prices for a one-way trip from JFK to LHR on September 1, 2026. Data includes fare details and airlines.

## Input

```json
{
  "origin": "JFK",
  "destination": "LHR",
  "departureDate": "2026-09-01",
  "departureDateEnd": "",
  "returnDate": "",
  "tripType": "one-way",
  "seatClass": "economy",
  "adults": 1,
  "children": 0,
  "maxStops": "",
  "currency": "USD",
  "language": "en-US",
  "maxResults": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "airlines": {
    "label": "Airlines",
    "format": "string"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "fromCode": {
    "label": "From",
    "format": "string"
  },
  "toCode": {
    "label": "To",
    "format": "string"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "string"
  },
  "departureTime": {
    "label": "Departure time",
    "format": "string"
  },
  "arrivalTime": {
    "label": "Arrival time",
    "format": "string"
  },
  "totalDurationMin": {
    "label": "Duration (min)",
    "format": "integer"
  },
  "airlineCode": {
    "label": "Airline code",
    "format": "string"
  }
}
```

## About this Actor

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