# Export Flightpoints award availability

**Use case:** 

Search Flightpoints award availability for JFK to LHR and export miles, taxes, seats, cabins, booking links, and itinerary data.

## Input

```json
{
  "origin": "JFK",
  "destination": "LHR",
  "origins": [
    "JFK"
  ],
  "destinations": [
    "LHR"
  ],
  "departureDate": "2026-07-15",
  "startDate": "2026-07-01",
  "endDate": "2026-07-31",
  "cabin": "",
  "sortBy": "",
  "includeRelatedOffers": true,
  "maxResults": 25
}
```

## Output

```json
{
  "origin": {
    "label": "Origin",
    "format": "string"
  },
  "destination": {
    "label": "Destination",
    "format": "string"
  },
  "departureDate": {
    "label": "Departure date",
    "format": "string"
  },
  "program": {
    "label": "Program",
    "format": "string"
  },
  "programName": {
    "label": "Program name",
    "format": "string"
  },
  "airline": {
    "label": "Airline",
    "format": "string"
  },
  "bestCabin": {
    "label": "Best cabin",
    "format": "string"
  },
  "availableCabins": {
    "label": "Available cabins",
    "format": "array"
  },
  "economy.miles": {
    "label": "Economy miles",
    "format": "number"
  },
  "economy.tax": {
    "label": "Economy tax",
    "format": "number"
  },
  "business.miles": {
    "label": "Business miles",
    "format": "number"
  },
  "business.tax": {
    "label": "Business tax",
    "format": "number"
  },
  "stops": {
    "label": "Stops",
    "format": "integer"
  },
  "departureTime": {
    "label": "Departure time",
    "format": "string"
  },
  "arrivalTime": {
    "label": "Arrival time",
    "format": "string"
  },
  "bookingUrl": {
    "label": "Booking URL",
    "format": "string"
  }
}
```

## About this Actor

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