# Monitor JFK to LHR Award Seats Availability

**Use case:** 

Monitor award seat availability for JFK to LHR, JFK to CDG, and LAX to NRT. Get miles, taxes, and flight details in real-time.

## Input

```json
{
  "origin": "JFK",
  "destination": "LHR",
  "departureDate": "2026-08-22",
  "routes": [
    {
      "origin": "JFK",
      "destination": "LHR",
      "departureDate": "2026-08-22"
    },
    {
      "origin": "JFK",
      "destination": "CDG",
      "departureDate": "2026-08-22"
    },
    {
      "origin": "LAX",
      "destination": "NRT",
      "departureDate": "2026-08-22"
    }
  ],
  "sources": [
    "flightpoints",
    "roame"
  ],
  "searchClass": "ECON",
  "daysAround": 0,
  "directOnly": false,
  "onlyNewItems": true,
  "maxItems": 200,
  "maxConcurrency": 3,
  "pollTimeoutSecs": 30
}
```

## Output

```json
{
  "id": {
    "label": "Result ID",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "origin": {
    "label": "From",
    "format": "string"
  },
  "destination": {
    "label": "To",
    "format": "string"
  },
  "departureDate": {
    "label": "Date",
    "format": "string"
  },
  "fareClass": {
    "label": "Cabin",
    "format": "string"
  },
  "awardPoints": {
    "label": "Miles / points",
    "format": "number"
  },
  "availableSeats": {
    "label": "Seats",
    "format": "number"
  },
  "sourceUpdatedAt": {
    "label": "Source updated",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  },
  "changeFingerprint": {
    "label": "Change ID",
    "format": "string"
  }
}
```

## About this Actor

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