# EasyJet Scraper — Flight Fares, Times & Seats (`memo23/easyjet-scraper`) Actor

Scrape EasyJet flights by route and flexible date window — one-way or round-trip. Every flight is a row: fare + all fare families, flight number, exact departure & arrival times, duration, seats left, and a booking link. Filter by max price, sort by cheapest. JSON or CSV.

- **URL**: https://apify.com/memo23/easyjet-scraper.md
- **Developed by:** [Muhamed Didovic](https://apify.com/memo23) (community)
- **Categories:** Travel, AI, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.00 / 1,000 flight results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## EasyJet Scraper

**Pull EasyJet flights into a clean dataset — one row per flight, with the price.** Give it a route and a flexible date window and get back every EasyJet flight: fare, fare type, flight number, exact departure/arrival times, duration, seats left, and a ready-to-book link. One-way or round-trip. JSON or CSV out, billed per result.

#### How it works

![How EasyJet Scraper works](https://raw.githubusercontent.com/muhamed-didovic/muhamed-didovic.github.io/main/assets/how-it-works-easyjet.png)

#### ✨ Why use this scraper?

Tracking flight prices? Building a fare-alert app? Researching routes? EasyJet's own site only lets you look one route and one date at a time — this actor turns it into structured rows you can pipe anywhere, in bulk.

- ✈️ **Every flight, not just the cheapest** — each flight on each day in your window becomes its own row, with its own price and seats-left.
- 💷 **Real fares + fare families** — the live `STANDARD` price plus every fare family offered on that flight.
- 🕑 **Exact schedules** — flight number, local departure and arrival times, and duration.
- 🔁 **One-way or round-trip** — round-trip returns both outbound and inbound flights so you can build any combination.
- 🪑 **Seats left** — how many seats remain at the quoted price (great for demand/price-pressure signals).
- 🗓️ **Flexible date windows** — search a whole range, not just one day.
- 🔗 **Bookable links** — every row includes an EasyJet deep-link with your passenger mix pre-filled.

#### 🎯 Use cases

| Team | What they build |
|------|-----------------|
| **Travel apps / OTAs** | Live EasyJet fare feeds for price comparison and alerts |
| **Price-monitoring** | Track a route's flights and prices over time |
| **Revenue / market analysts** | Watch competitor capacity, schedules and seats-left |
| **Content / deals sites** | "Cheapest EasyJet flights from {city}" pages |
| **Travellers** | Compare every flight on a route across flexible dates |

#### 📥 Supported inputs

| Input | What you get |
|---|---|
| `origin` + `destination` + dates | every **one-way** flight on that route across the window |
| `origin` + `destination` + return dates, `tripType: roundTrip` | every **outbound + inbound** flight across both windows |

Airports are IATA codes (e.g. `LGW`, `LTN`, `CDG`). Comma-separate `origin`/`destination` for multiple routes in one run. Both origin and destination are required.

#### ⚙️ Input parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `origin` | string | `LGW` | Origin airport IATA code(s), comma-separated. |
| `destination` | string | `CDG` | Destination IATA code(s), comma-separated. |
| `tripType` | string | `oneWay` | `oneWay` or `roundTrip`. |
| `departDateFrom` / `departDateTo` | string | today / +2d | Outbound date window (YYYY-MM-DD). |
| `returnDateFrom` / `returnDateTo` | string | — | Inbound window (round-trip only). |
| `maxPrice` | integer | — | Keep only flights at or below this price (£). |
| `sortBy` | string | `sourceOrder` | `cheapest`, `earliestDeparture`, `shortestDuration` or source order. |
| `includeUnavailable` | boolean | `false` | Also emit sold-out flights. |
| `adults` / `children` / `infants` | integer | `1`/`0`/`0` | Passenger mix (for the booking link). |
| `maxResults` | integer | `1000` | Hard cap on total flight rows. |

#### 📦 Output sample

```json
{
  "airline": "easyJet",
  "carrierCode": "U2",
  "tripType": "oneWay",
  "direction": "outbound",
  "available": true,
  "flightNumber": "U28411",
  "fromCode": "LGW", "fromName": "London Gatwick",
  "toCode": "CDG", "toName": "Paris Charles de Gaulle",
  "departureDate": "2026-07-16", "departureTime": "18:40", "arrivalTime": "20:55",
  "durationMinutes": 75,
  "price": 19.49, "currency": "GBP",
  "fareFamily": "STANDARD", "farePrices": { "STANDARD": 19.49, "FLEXI": 71.49 },
  "seatsAvailable": 2, "soldOut": false,
  "bookingUrl": "https://www.easyjet.com/deeplink?dep=LGW&dest=CDG&dd=2026-07-16&..."
}
````

#### 🗂 Key output fields

| Field | Meaning |
|---|---|
| `flightNumber`, `carrierCode` | e.g. `U28411`, `U2` (EasyJet) / `EC` (EasyJet Europe) |
| `direction` | `outbound` or `inbound` (round-trip) |
| `fromCode/fromName`, `toCode/toName` | airports |
| `departureDate`, `departureTime`, `arrivalTime`, `durationMinutes` | local schedule |
| `price`, `currency`, `fareFamily`, `farePrices` | cheapest fare + every fare family's price |
| `seatsAvailable`, `soldOut` | seats left at the quoted price / sold-out flag |
| `bookingUrl` | EasyJet deep-link with your passenger mix |

#### ❓ FAQ

**One row per flight or per route?**
One row per **flight**. Each flight on each day in your window is its own row — so you see every option, its price, and its seats-left, not just the cheapest.

**Does round-trip give me combined prices?**
Round-trip returns the actual outbound **and** inbound flights (tagged by `direction`), each with its own price — so you can build any pairing you like rather than being locked to one combination.

**How current are the prices?**
They're pulled live at run time. Re-run on a schedule to track fares and seats-left over time.

**Which currency?**
Prices are returned in GBP.

#### 💬 Support

- Issues / feature requests: the **Issues** tab on the actor's Apify Console page.
- Author: <https://muhamed-didovic.github.io/> · <muhamed.didovic@gmail.com>

#### 🔎 Explore more scrapers

See other scrapers at [memo23's Apify profile](https://apify.com/memo23) — flights, travel, real estate, jobs, SEO, social media, and more. Pair this with the **Ryanair Scraper** and **Google Flights Scraper** for full low-cost-carrier + mainstream coverage.

***

### ⚠️ Disclaimer

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by easyJet Airline Company Limited or any of its subsidiaries. All trademarks are the property of their respective owners. The scraper accesses only publicly available fare data; users are responsible for ensuring their use complies with easyJet's Terms of Service and applicable law (GDPR, etc.).

***

### SEO Keywords

easyjet scraper, scrape easyjet, easyjet fares api, easyjet price scraper, easyjet flight scraper, cheapest easyjet flights, easyjet fare finder, flight price scraper, low cost carrier scraper, budget flight scraper, easyjet one way, easyjet round trip, flight price monitoring, fare alert api, easyjet timetable scraper, easyjet seats availability, flight data api, airfare scraper, europe flight prices, easyjet booking links

# Actor input Schema

## `origin` (type: `string`):

Origin airport IATA code. Comma-separate for several origins (e.g. `LGW,LTN`).

## `destination` (type: `string`):

Destination airport IATA code(s), comma-separated (e.g. `CDG` or `CDG,ORY`).

## `tripType` (type: `string`):

`oneWay` (default) or `roundTrip`. Round-trip also needs a return date window and emits inbound flights too.

## `departDateFrom` (type: `string`):

Earliest outbound date (YYYY-MM-DD). Defaults to today.

## `departDateTo` (type: `string`):

Latest outbound date (YYYY-MM-DD). Defaults to 2 days after the start.

## `returnDateFrom` (type: `string`):

Earliest inbound date (YYYY-MM-DD). Required for round-trip.

## `returnDateTo` (type: `string`):

Latest inbound date (YYYY-MM-DD).

## `maxPrice` (type: `integer`):

Keep only flights at or below this price (GBP). Leave empty for no limit.

## `sortBy` (type: `string`):

Order the saved flights.

## `includeUnavailable` (type: `boolean`):

Also emit flights that are sold out (`soldOut: true`, no price).

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

Number of adults (16+).

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

Number of children (2–15).

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

Number of infants (under 2).

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

Hard cap on the total number of flight rows returned.

## Actor input object example

```json
{
  "origin": "LGW",
  "destination": "CDG",
  "tripType": "oneWay",
  "sortBy": "sourceOrder",
  "includeUnavailable": false,
  "adults": 1,
  "children": 0,
  "infants": 0,
  "maxResults": 1000
}
```

# 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 = {
    "origin": "LGW",
    "destination": "CDG"
};

// Run the Actor and wait for it to finish
const run = await client.actor("memo23/easyjet-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 = {
    "origin": "LGW",
    "destination": "CDG",
}

# Run the Actor and wait for it to finish
run = client.actor("memo23/easyjet-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 '{
  "origin": "LGW",
  "destination": "CDG"
}' |
apify call memo23/easyjet-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "EasyJet Scraper — Flight Fares, Times & Seats",
        "description": "Scrape EasyJet flights by route and flexible date window — one-way or round-trip. Every flight is a row: fare + all fare families, flight number, exact departure & arrival times, duration, seats left, and a booking link. Filter by max price, sort by cheapest. JSON or CSV.",
        "version": "0.0",
        "x-build-id": "M5zX54VNIEXVeeVkr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/memo23~easyjet-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-memo23-easyjet-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/memo23~easyjet-scraper/runs": {
            "post": {
                "operationId": "runs-sync-memo23-easyjet-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/memo23~easyjet-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-memo23-easyjet-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",
                "required": [
                    "origin",
                    "destination"
                ],
                "properties": {
                    "origin": {
                        "title": "Origin airport(s)",
                        "type": "string",
                        "description": "Origin airport IATA code. Comma-separate for several origins (e.g. `LGW,LTN`)."
                    },
                    "destination": {
                        "title": "Destination airport(s)",
                        "type": "string",
                        "description": "Destination airport IATA code(s), comma-separated (e.g. `CDG` or `CDG,ORY`)."
                    },
                    "tripType": {
                        "title": "Trip type",
                        "enum": [
                            "oneWay",
                            "roundTrip"
                        ],
                        "type": "string",
                        "description": "`oneWay` (default) or `roundTrip`. Round-trip also needs a return date window and emits inbound flights too.",
                        "default": "oneWay"
                    },
                    "departDateFrom": {
                        "title": "Outbound date from",
                        "type": "string",
                        "description": "Earliest outbound date (YYYY-MM-DD). Defaults to today."
                    },
                    "departDateTo": {
                        "title": "Outbound date to",
                        "type": "string",
                        "description": "Latest outbound date (YYYY-MM-DD). Defaults to 2 days after the start."
                    },
                    "returnDateFrom": {
                        "title": "Return date from (round-trip)",
                        "type": "string",
                        "description": "Earliest inbound date (YYYY-MM-DD). Required for round-trip."
                    },
                    "returnDateTo": {
                        "title": "Return date to (round-trip)",
                        "type": "string",
                        "description": "Latest inbound date (YYYY-MM-DD)."
                    },
                    "maxPrice": {
                        "title": "Max price (£)",
                        "type": "integer",
                        "description": "Keep only flights at or below this price (GBP). Leave empty for no limit."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "sourceOrder",
                            "cheapest",
                            "earliestDeparture",
                            "shortestDuration"
                        ],
                        "type": "string",
                        "description": "Order the saved flights.",
                        "default": "sourceOrder"
                    },
                    "includeUnavailable": {
                        "title": "Include sold-out flights",
                        "type": "boolean",
                        "description": "Also emit flights that are sold out (`soldOut: true`, no price).",
                        "default": false
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Number of adults (16+).",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of children (2–15).",
                        "default": 0
                    },
                    "infants": {
                        "title": "Infants",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Number of infants (under 2).",
                        "default": 0
                    },
                    "maxResults": {
                        "title": "Maximum flights",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Hard cap on the total number of flight rows returned.",
                        "default": 1000
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
