# Skyscanner Flight Scraper (`khadinakbar/skyscanner-flight-scraper`) Actor

Scrape Skyscanner flights with prices, airlines, segments, baggage, CO2, and per-agent booking links. MCP-ready.

- **URL**: https://apify.com/khadinakbar/skyscanner-flight-scraper.md
- **Developed by:** [Khadin Akbar](https://apify.com/khadinakbar) (community)
- **Categories:** Travel, MCP servers, AI
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 flight founds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Skyscanner Flight Scraper

**Search [Skyscanner](https://www.skyscanner.net) for real flight prices and get back clean, structured JSON** — one record per itinerary with the **cheapest price**, **every booking agent and deep link**, **per-segment schedule detail**, **baggage**, and **CO₂ emissions**. Give it a route and dates (or a Skyscanner flights URL) and it returns ranked, deduplicated flights ready for an app, a spreadsheet, or an AI agent. Built MCP-first so tools like Claude and ChatGPT can call it directly.

Runs on the Apify platform with API access, scheduling, integrations, residential proxy rotation, and run monitoring out of the box.

### What does Skyscanner Flight Scraper do?

It performs a live Skyscanner search the same way the website does, then normalizes the raw response into a tidy, flat schema:

- **Cheapest price per itinerary** plus a full list of booking options (agent name, price, and direct **deep link** to book).
- **Outbound and inbound legs** with origin/destination, local departure/arrival times (ISO 8601), duration, and stop count.
- **Segment-level detail**: each flight number, marketing and operating carrier, and timing.
- **Baggage allowance** where the fare exposes it, and **CO₂ emissions** with an eco delta vs a typical flight on the route.
- **Quality signals**: Skyscanner blended score and tags such as `best`, `cheapest`, and `fastest`.

One-way and round-trip are supported, with cabin class and passenger mix (adults, children, lap infants), localized to any market, currency, and language.

### Why use this scraper?

- **Fare tracking & price alerts** — snapshot a route daily and notify when the cheapest fare drops.
- **Travel apps & metasearch** — power a comparison view with side-by-side agent prices and booking links.
- **Market & pricing research** — track aligned fares across city pairs and dates over time.
- **AI travel agents** — a single tool call returns structured flights an LLM can reason over, with deep links to act on.
- **Sustainability reporting** — surface CO₂ per itinerary for greener-travel features.

### How to use Skyscanner Flight Scraper

1. Open the **Input** tab.
2. Enter a **departure** and **arrival** (city name or IATA code, e.g. `LAX`), a **departure date**, and optionally a **return date**. Or paste a full Skyscanner flights URL into **Start URLs**.
3. Optionally set cabin class, passengers, market, currency, and a **max flights** cap to control cost.
4. Click **Start**. When the run finishes, open the **Output / Storage** tab and download the dataset as JSON, CSV, Excel, or HTML — or pull it via the API.

### Input

| Field | Description |
|-------|-------------|
| `departureAirport` | Origin city or IATA code (filter mode). |
| `arrivalAirport` | Destination city or IATA code (filter mode). |
| `departureDate` | Outbound date, `YYYY-MM-DD`. |
| `returnDate` | Inbound date for round trips; empty = one-way. |
| `startUrls` | Skyscanner flights URLs (overrides the filter fields). |
| `cabinClass` | economy, premium_economy, business, first. |
| `adults` / `children` / `infants` | Passenger mix. |
| `market` / `currency` / `locale` | Country, currency, and language for pricing and labels. |
| `resultSort` | best, cheapest, fastest, or shortest. |
| `maxResults` | Hard cap on flights delivered and billed. |

Example input:

```json
{
  "departureAirport": "LAX",
  "arrivalAirport": "Tokyo",
  "departureDate": "2026-06-15",
  "returnDate": "2026-06-22",
  "cabinClass": "economy",
  "adults": 1,
  "currency": "USD",
  "maxResults": 100
}
````

### Output

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel. A simplified example record:

```json
{
  "itineraryId": "13542-2606151030--32171-1-12712-2606161400",
  "searchOrigin": "LAX",
  "searchDestination": "Tokyo",
  "tripType": "round_trip",
  "cabinClass": "economy",
  "price": 742.18,
  "currency": "USD",
  "priceFormatted": "742.18",
  "primaryBookingUrl": "https://www.skyscanner.net/transport/flights/...",
  "agents": ["Trip.com", "Expedia"],
  "bookingOptions": [
    { "agent": "Trip.com", "price": 742.18, "deepLink": "https://...", "baggage": { "checked": 1, "cabin": 1 } }
  ],
  "isDirect": false,
  "totalStops": 1,
  "durationMinutes": 760,
  "durationText": "12h 40m",
  "score": 9.12,
  "tags": ["best", "cheapest"],
  "carbonEmissions": { "grams": 412000, "vsTypicalPercent": -12, "isEco": true },
  "legs": [
    {
      "direction": "outbound",
      "origin": "LAX",
      "destination": "NRT",
      "departure": "2026-06-15T10:30:00",
      "arrival": "2026-06-16T14:00:00",
      "durationText": "12h 40m",
      "stops": 1,
      "carriers": ["Japan Airlines"],
      "segments": [
        { "from": "LAX", "to": "SFO", "carrier": "Japan Airlines", "flightNumber": "JL12" }
      ]
    }
  ],
  "scrapedAt": "2026-05-30T12:00:00.000Z"
}
```

#### Data fields

| Field | Type | Description |
|-------|------|-------------|
| `price` / `currency` | number / string | Cheapest total fare and its currency. |
| `bookingOptions` | array | Per-agent price, deep link, and baggage. |
| `primaryBookingUrl` | string | Deep link for the cheapest option. |
| `legs[]` | array | Outbound/inbound with segments, carriers, times, stops. |
| `carbonEmissions` | object | CO₂ grams and eco delta vs a typical flight. |
| `tags` | array | best / cheapest / fastest buckets. |
| `score` | number | Skyscanner blended quality score. |
| `scrapedAt` | string | ISO 8601 capture time. |

### How much does it cost to scrape Skyscanner?

This Actor uses **pay-per-event** pricing:

- **$0.001** per run start.
- **$0.004** per flight itinerary delivered.

A typical search returning 100 flights costs about **$0.40**. Use `maxResults` to cap spend precisely — you are only billed for flights actually delivered, and if a run is fully blocked you are not charged for flights at all.

### Tips and advanced options

- Lower `maxResults` for cheaper runs; raise it for fuller coverage of a busy route.
- Set `market` and `currency` to the traveler's country for the most relevant fares and agents.
- Use `resultSort: "cheapest"` for fare-alert pipelines, or `best` for a balanced default.
- Schedule daily runs to build a price-history dataset for trend analysis.

### FAQ, disclaimer, and support

**Is scraping Skyscanner legal?** This Actor collects publicly available flight pricing for legitimate uses such as price comparison, research, and personal trip planning. You are responsible for complying with Skyscanner's Terms of Service and applicable laws in your jurisdiction. Do not use the data to harm the source site.

**Why did a run return fewer flights than expected?** Some routes and dates simply have limited availability. Skyscanner also uses PerimeterX anti-bot protection; the Actor runs through residential proxies and rotates sessions, but occasional retries are normal. If a run is fully blocked it fails cleanly without charging you for flights — just run it again.

**Does it support multi-city trips?** v0.1 supports one-way and round-trip. Multi-city is planned.

**Found a bug or need a custom field?** Open the **Issues** tab on the Actor page. Custom solutions are available on request.

# Actor input Schema

## `departureAirport` (type: `string`):

Where the trip starts, as a city name or 3-letter IATA code (e.g. 'Los Angeles' or 'LAX'). The scraper resolves it to a Skyscanner place via autosuggest, so codes are most precise. Used only in filter mode and ignored when a Skyscanner flights URL is supplied in Start URLs. This is the origin, NOT the destination.

## `arrivalAirport` (type: `string`):

Where the trip ends, as a city name or 3-letter IATA code (e.g. 'Tokyo' or 'NRT'). Resolved the same way as the departure. Required together with departureAirport and departureDate in filter mode; ignored when a flights URL is used. This is the destination, NOT the origin.

## `departureDate` (type: `string`):

Outbound flight date in YYYY-MM-DD format (e.g. '2026-06-15'). Must be today or later — Skyscanner returns no fares for past dates. Required in filter mode. This is the leave date, not the return date.

## `returnDate` (type: `string`):

Inbound flight date in YYYY-MM-DD format for a round trip. Leave empty for a one-way search. Must be on or after the departure date. When set, results include both outbound and inbound legs.

## `startUrls` (type: `array`):

Optional list of full Skyscanner flights URLs like 'https://www.skyscanner.net/transport/flights/lax/nrt/260615/260622/'. Route and dates are read from each URL, overriding the filter fields for that search. Use this to replay an exact search you ran in the browser. Leave empty to use the departure/arrival/date filters instead.

## `cabinClass` (type: `string`):

Travel class applied to every search in this run. One of economy, premium\_economy, business, or first. Defaults to economy. Affects which fares Skyscanner returns, not the route.

## `adults` (type: `integer`):

Number of adult passengers aged 16+. Minimum 1, maximum 9. Defaults to 1. Prices returned are the total for all passengers as Skyscanner reports them.

## `children` (type: `integer`):

Number of child passengers (roughly ages 2-15). Defaults to 0, maximum 8. Combined with adults and infants to size the search. Not the same as infants, who travel on a lap.

## `infants` (type: `integer`):

Number of lap infants under ~2 years with no seat of their own. Defaults to 0, maximum 8. Some carriers limit infants per adult. Distinct from children, who occupy a seat.

## `market` (type: `string`):

Skyscanner market as a 2-letter ISO country code (e.g. 'US', 'GB', 'DE'). Controls regional pricing, available agents, and deep-link booking sites. Defaults to US. Use the buyer's country for the most relevant fares.

## `currency` (type: `string`):

ISO 4217 currency code for prices (e.g. 'USD', 'EUR', 'GBP'). Defaults to USD. All price fields in the output are expressed in this currency. Does not change which flights are returned.

## `locale` (type: `string`):

BCP-47 language tag for localized place and carrier names (e.g. 'en-US', 'de-DE'). Defaults to en-US. Affects text labels only, not prices or routes. Leave default for English output.

## `resultSort` (type: `string`):

Order itineraries are delivered and capped by maxResults. 'best' uses Skyscanner's blended score, 'cheapest' by price, 'fastest'/'shortest' by total duration. Defaults to best. Sorting is applied after results are fetched.

## `maxResults` (type: `integer`):

Hard cap on itineraries delivered (and billed) per run, across all searches. Defaults to 100, maximum 5000. Lower it to control cost; you are charged per delivered flight. This caps output, not how many Skyscanner finds internally.

## `proxyConfiguration` (type: `object`):

Proxy used to reach Skyscanner. Residential proxies are strongly recommended and on by default — Skyscanner uses PerimeterX anti-bot, and datacenter IPs are blocked. Leave the default unless you have a specific residential provider configured on Apify.

## Actor input object example

```json
{
  "departureAirport": "LAX",
  "arrivalAirport": "NRT",
  "departureDate": "2026-06-15",
  "returnDate": "2026-06-22",
  "startUrls": [
    {
      "url": "https://www.skyscanner.net/transport/flights/lax/nrt/260615/260622/"
    }
  ],
  "cabinClass": "economy",
  "adults": 1,
  "children": 0,
  "infants": 0,
  "market": "GB",
  "currency": "EUR",
  "locale": "de-DE",
  "resultSort": "best",
  "maxResults": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `flights` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "departureAirport": "Los Angeles",
    "arrivalAirport": "Tokyo",
    "departureDate": "2026-06-15",
    "returnDate": "2026-06-22",
    "startUrls": [],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("khadinakbar/skyscanner-flight-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "departureAirport": "Los Angeles",
    "arrivalAirport": "Tokyo",
    "departureDate": "2026-06-15",
    "returnDate": "2026-06-22",
    "startUrls": [],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("khadinakbar/skyscanner-flight-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "departureAirport": "Los Angeles",
  "arrivalAirport": "Tokyo",
  "departureDate": "2026-06-15",
  "returnDate": "2026-06-22",
  "startUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call khadinakbar/skyscanner-flight-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=khadinakbar/skyscanner-flight-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Skyscanner Flight Scraper",
        "description": "Scrape Skyscanner flights with prices, airlines, segments, baggage, CO2, and per-agent booking links. MCP-ready.",
        "version": "0.1",
        "x-build-id": "yKm8KyLpzjt1fxQT7"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/khadinakbar~skyscanner-flight-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-khadinakbar-skyscanner-flight-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/khadinakbar~skyscanner-flight-scraper/runs": {
            "post": {
                "operationId": "runs-sync-khadinakbar-skyscanner-flight-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/khadinakbar~skyscanner-flight-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-khadinakbar-skyscanner-flight-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "departureAirport": {
                        "title": "Departure airport or city",
                        "type": "string",
                        "description": "Where the trip starts, as a city name or 3-letter IATA code (e.g. 'Los Angeles' or 'LAX'). The scraper resolves it to a Skyscanner place via autosuggest, so codes are most precise. Used only in filter mode and ignored when a Skyscanner flights URL is supplied in Start URLs. This is the origin, NOT the destination."
                    },
                    "arrivalAirport": {
                        "title": "Arrival airport or city",
                        "type": "string",
                        "description": "Where the trip ends, as a city name or 3-letter IATA code (e.g. 'Tokyo' or 'NRT'). Resolved the same way as the departure. Required together with departureAirport and departureDate in filter mode; ignored when a flights URL is used. This is the destination, NOT the origin."
                    },
                    "departureDate": {
                        "title": "Departure date",
                        "type": "string",
                        "description": "Outbound flight date in YYYY-MM-DD format (e.g. '2026-06-15'). Must be today or later — Skyscanner returns no fares for past dates. Required in filter mode. This is the leave date, not the return date."
                    },
                    "returnDate": {
                        "title": "Return date (optional)",
                        "type": "string",
                        "description": "Inbound flight date in YYYY-MM-DD format for a round trip. Leave empty for a one-way search. Must be on or after the departure date. When set, results include both outbound and inbound legs."
                    },
                    "startUrls": {
                        "title": "Skyscanner flights URLs (alternative to filters)",
                        "type": "array",
                        "description": "Optional list of full Skyscanner flights URLs like 'https://www.skyscanner.net/transport/flights/lax/nrt/260615/260622/'. Route and dates are read from each URL, overriding the filter fields for that search. Use this to replay an exact search you ran in the browser. Leave empty to use the departure/arrival/date filters instead.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "cabinClass": {
                        "title": "Cabin class",
                        "enum": [
                            "economy",
                            "premium_economy",
                            "business",
                            "first"
                        ],
                        "type": "string",
                        "description": "Travel class applied to every search in this run. One of economy, premium_economy, business, or first. Defaults to economy. Affects which fares Skyscanner returns, not the route.",
                        "default": "economy"
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "maximum": 9,
                        "type": "integer",
                        "description": "Number of adult passengers aged 16+. Minimum 1, maximum 9. Defaults to 1. Prices returned are the total for all passengers as Skyscanner reports them.",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 8,
                        "type": "integer",
                        "description": "Number of child passengers (roughly ages 2-15). Defaults to 0, maximum 8. Combined with adults and infants to size the search. Not the same as infants, who travel on a lap.",
                        "default": 0
                    },
                    "infants": {
                        "title": "Infants (on lap)",
                        "minimum": 0,
                        "maximum": 8,
                        "type": "integer",
                        "description": "Number of lap infants under ~2 years with no seat of their own. Defaults to 0, maximum 8. Some carriers limit infants per adult. Distinct from children, who occupy a seat.",
                        "default": 0
                    },
                    "market": {
                        "title": "Market / country",
                        "type": "string",
                        "description": "Skyscanner market as a 2-letter ISO country code (e.g. 'US', 'GB', 'DE'). Controls regional pricing, available agents, and deep-link booking sites. Defaults to US. Use the buyer's country for the most relevant fares.",
                        "default": "US"
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "ISO 4217 currency code for prices (e.g. 'USD', 'EUR', 'GBP'). Defaults to USD. All price fields in the output are expressed in this currency. Does not change which flights are returned.",
                        "default": "USD"
                    },
                    "locale": {
                        "title": "Locale (language)",
                        "type": "string",
                        "description": "BCP-47 language tag for localized place and carrier names (e.g. 'en-US', 'de-DE'). Defaults to en-US. Affects text labels only, not prices or routes. Leave default for English output.",
                        "default": "en-US"
                    },
                    "resultSort": {
                        "title": "Sort results",
                        "enum": [
                            "best",
                            "cheapest",
                            "fastest",
                            "shortest"
                        ],
                        "type": "string",
                        "description": "Order itineraries are delivered and capped by maxResults. 'best' uses Skyscanner's blended score, 'cheapest' by price, 'fastest'/'shortest' by total duration. Defaults to best. Sorting is applied after results are fetched.",
                        "default": "best"
                    },
                    "maxResults": {
                        "title": "Max flights to return",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Hard cap on itineraries delivered (and billed) per run, across all searches. Defaults to 100, maximum 5000. Lower it to control cost; you are charged per delivered flight. This caps output, not how many Skyscanner finds internally.",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy used to reach Skyscanner. Residential proxies are strongly recommended and on by default — Skyscanner uses PerimeterX anti-bot, and datacenter IPs are blocked. Leave the default unless you have a specific residential provider configured on Apify.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
