# Scrape Specific Kayak Flight Deal Pages by URL

**Use case:** 

Extract detailed information from a curated list of Kayak flight deal URLs for comprehensive market analysis. This allows travel researchers to monitor competit

## Input

```json
{
  "mode": "byUrls",
  "origin": "NYC",
  "destination": "LON",
  "tripType": "round-trip",
  "cabinClass": "economy",
  "adults": 1,
  "sortBy": "price",
  "startUrls": [
    "{'url': 'https://www.kayak.com/flights/NYC-MIA/2024-11-01/2024-11-08'}",
    "{'url': 'https://www.kayak.com/flights/LAX-LAS/2024-12-05/2024-12-08'}"
  ],
  "maxItems": 10
}
```

## Output

```json
{
  "flightId": {
    "label": "Flight ID",
    "format": "text"
  },
  "origin": {
    "label": "Origin",
    "format": "text"
  },
  "destination": {
    "label": "Destination",
    "format": "text"
  },
  "departDate": {
    "label": "Depart",
    "format": "text"
  },
  "returnDate": {
    "label": "Return",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "airline": {
    "label": "Airline",
    "format": "text"
  },
  "stops": {
    "label": "Stops",
    "format": "number"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "departTime": {
    "label": "Depart Time",
    "format": "text"
  },
  "arrivalTime": {
    "label": "Arrival Time",
    "format": "text"
  },
  "cabinClass": {
    "label": "Cabin class"
  },
  "tripType": {
    "label": "Trip type"
  },
  "deepLink": {
    "label": "Book URL",
    "format": "link"
  },
  "recordType": {
    "label": "Record type"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Kayak Flights, Hotels & Deals Scraper](https://apify.com/crawlerbros/kayak-flight-hotel-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/kayak-flight-hotel-scraper) to learn more, explore other use cases, and run it yourself.