# Find Award Flights from JFK to London

**Use case:** 

Find Award Flights from JFK to London by scraping miles, taxes, cabins, routes, and seat availability.

## Input

```json
{
  "maxItems": 100,
  "sortBy": "",
  "origins": [
    "JFK"
  ],
  "destinations": [
    "LHR"
  ],
  "cabin": "business"
}
```

## Output

```json
{
  "cabins": {
    "label": "Cabins",
    "format": "object"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "originName": {
    "label": "Origin Name",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "destinationName": {
    "label": "Destination Name",
    "format": "text"
  },
  "distance": {
    "label": "Distance",
    "format": "number"
  },
  "issuer": {
    "label": "Issuer",
    "format": "text"
  },
  "issuerName": {
    "label": "Issuer Name",
    "format": "text"
  },
  "itineraries": {
    "label": "Itineraries",
    "format": "object"
  },
  "link": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Flight Award & Itinerary Scraper – Miles, Taxes & Cabins](https://apify.com/igolaizola/flight-award-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/igolaizola/flight-award-scraper) to learn more, explore other use cases, and run it yourself.