# Nonstop Award Flight Search from JFK to CDG

**Use case:** 

Find available nonstop award flights from New York to Paris. Get data on miles, taxes, seats, and booking links for your travel.

## Input

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

## Output

```json
{
  "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"
  },
  "taxes": {
    "label": "Taxes (USD)",
    "format": "number"
  },
  "availableSeats": {
    "label": "Seats",
    "format": "number"
  },
  "programName": {
    "label": "Loyalty program",
    "format": "string"
  },
  "airlineName": {
    "label": "Airline",
    "format": "string"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "bookingUrl": {
    "label": "Book",
    "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.