# Flightpoints Route Award Scraper

**Use case:** 

Scrape Flightpoints cached award availability for a route with loyalty-program filters and cabin preferences.

## Input

```json
{
  "origin": "SFO",
  "destination": "HND",
  "departureDate": "2026-08-20",
  "maxResults": 50,
  "deltaDays": 1,
  "cabinClass": "Business",
  "minimumSeats": 1,
  "onlyDirectFlights": false,
  "programs": [
    "AA",
    "UA",
    "AC"
  ],
  "includeSegments": true,
  "liveSearch": false,
  "pollTimeoutSecs": 30
}
```

## Output

```json
{
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departureDate": {
    "label": "Date",
    "format": "date"
  },
  "departureTime": {
    "label": "Depart",
    "format": "text"
  },
  "arrivalDate": {
    "label": "Arrival date",
    "format": "date"
  },
  "arrivalTime": {
    "label": "Arrive",
    "format": "text"
  },
  "program": {
    "label": "Program",
    "format": "text"
  },
  "bestCabin": {
    "label": "Best cabin",
    "format": "text"
  },
  "bestMiles": {
    "label": "Miles",
    "format": "number"
  },
  "bestTaxes": {
    "label": "Taxes",
    "format": "number"
  },
  "bestSeats": {
    "label": "Seats",
    "format": "number"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "durationMinutes": {
    "label": "Duration min",
    "format": "number"
  },
  "bookingUrl": {
    "label": "Booking URL",
    "format": "link"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "lastSeen": {
    "label": "Last seen",
    "format": "date"
  },
  "id": {
    "label": "Flight ID",
    "format": "text"
  }
}
```

## About this Actor

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