# Points Redemption Trip Planning

**Use case:** 

Compare award-flight options for a trip by filtering seats, cabins, taxes, programs, and segment details.

## Input

```json
{
  "origin": "LAX",
  "destination": "CDG",
  "departureDate": "2026-09-10",
  "maxResults": 75,
  "deltaDays": 3,
  "cabinClass": "Premium Economy",
  "minimumSeats": 2,
  "onlyDirectFlights": false,
  "maxTaxesUsd": 350,
  "programs": [
    "AA",
    "BA",
    "VS"
  ],
  "includeSegments": true,
  "liveSearch": false,
  "pollTimeoutSecs": 45
}
```

## 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.