# Find NYC to London flight deals on eDreams

**Use case:** 

Search eDreams flights from New York to London. Export airlines, prices, durations, and itineraries for airfare monitoring and travel arbitrage research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.edreams.com/travel/#results/type=O;dep=2026-07-08;from=NYC;to=LON"
    }
  ],
  "origin": "NYC",
  "destination": "LON",
  "departureDate": "2026-07-08",
  "returnDate": "2026-07-15",
  "tripType": "oneWay",
  "adults": 1,
  "children": 0,
  "infants": 0,
  "cabinClass": "TOURIST",
  "directFlightsOnly": false,
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "origin": {
    "label": "Origin"
  },
  "destination": {
    "label": "Destination"
  },
  "departureDate": {
    "label": "Departure date"
  },
  "returnDate": {
    "label": "Return date"
  },
  "tripType": {
    "label": "Trip type"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "regularPrice": {
    "label": "Regular price"
  },
  "memberPrice": {
    "label": "Member price"
  },
  "airlines": {
    "label": "Airlines"
  },
  "stops": {
    "label": "Stops"
  },
  "totalDurationMinutes": {
    "label": "Total duration minutes"
  },
  "ticketsLeft": {
    "label": "Tickets left"
  },
  "outbound": {
    "label": "Outbound"
  },
  "inbound": {
    "label": "Inbound"
  },
  "resultUrl": {
    "label": "Result url"
  }
}
```

## About this Actor

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