# Ryanair Fares Scraper — Cheap Flight Deals (`hipersoft/ryanair-fares-scraper`) Actor

Scrape cheap Ryanair fares: routes, dates, prices and the cheapest flight deals across airports. One-way and round-trip, any market and currency. Clean structured JSON, CSV or Excel for deal alerts, price tracking and travel dashboards.

- **URL**: https://apify.com/hipersoft/ryanair-fares-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Travel, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / fare scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Ryanair Fares Scraper — Cheap Flight Deals, Routes, Dates & Prices

Scrape **cheap Ryanair fares** in bulk and find the **cheapest flight deals** across airports and dates. Give the Ryanair fares scraper one or more departure airports and a date window, and it returns one clean row per fare: **route**, **departure and arrival dates**, **price**, **currency**, **flight number** and a ready-to-open **booking link**. Works for **one-way** and **round-trip** searches, in any market and currency. Export the results as **JSON, CSV, Excel or XML**. Fast and reliable.

Ideal for **flight-deal alerts**, **price tracking**, cheapest-destination finders, travel dashboards, fare research and travel-agency tooling.

![Ryanair Fares Scraper input — departure airports, trip type, date window and price cap](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/ryanair-fares-scraper-input.png)

### What does the Ryanair Fares Scraper do?

The Ryanair Fares Scraper is a no-code cheap-flights crawler that collects the lowest available Ryanair fares from any departure airport across a range of dates. Instead of clicking through the site one route at a time, you point it at a list of airports, pick one-way or round-trip, set your date window and price cap, and get a structured dataset of the cheapest fares — every route, date and price in one export. It resolves each airport's **name, city and country** so your data is clean and analysis-ready.

### What data can you scrape from Ryanair?

| Field | Description |
|-------|-------------|
| `departureAirport` / `departureAirportName` | Origin airport IATA code and full name. |
| `departureCity` / `departureCountry` | Origin city and country. |
| `arrivalAirport` / `arrivalAirportName` | Destination airport IATA code and full name. |
| `arrivalCity` / `arrivalCountry` | Destination city and country. |
| `departureDate` / `arrivalDate` | Outbound departure and arrival date-times. |
| `price` / `currency` | Cheapest fare price and its currency. |
| `tripType` | `oneWay` or `roundTrip`. |
| `returnDate` / `returnPrice` | Return departure date and price (round-trip). |
| `totalPrice` / `durationDays` | Combined round-trip price and trip length in days. |
| `flightNumber` | Ryanair flight number. |
| `bookingUrl` | Deep link to continue booking the fare. |
| `scrapedAt` | Timestamp of when the fare was collected. |

### Use cases

- **Flight-deal alerts** — run on a schedule and get notified whenever a cheap Ryanair fare appears from your home airports.
- **Price tracking** — log fares over time to spot price drops and the best time to book.
- **Cheapest-destination finder** — pull every route from an airport and sort by price to see where you can fly cheapest.
- **Travel dashboards** — feed clean fare data into Google Sheets, Looker Studio or Power BI.
- **Fare research & data journalism** — analyse how Ryanair prices routes across dates and markets.
- **Travel-agency & affiliate tooling** — surface the best current deals to your own customers.
- **Multi-airport comparison** — search several departure airports at once and compare the cheapest options side by side.

### How to scrape Ryanair fares

1. Add the **Ryanair Fares Scraper** to your Apify account and open it.
2. Enter one or more **departure airports** as IATA codes (e.g. `DUB`, `STN`, `BGY`).
3. Choose **one-way** or **round-trip**, then set your **outbound date window** (and return window / trip length for round-trips).
4. Optionally set a **maximum price**, a **market** (currency/language) and a **fare limit**.
5. Click **Run**, then download the results as JSON, CSV or Excel — or pull them from the API.

### Input

| Field | Description |
|-------|-------------|
| `departureAirports` | Airport IATA codes to search fares FROM, one per line (e.g. `DUB`, `STN`). |
| `tripType` | `oneWay` or `roundTrip`. |
| `outboundDateFrom` | Earliest outbound date, `YYYY-MM-DD`. Defaults to today. |
| `outboundDateTo` | Latest outbound date, `YYYY-MM-DD`. Defaults to 30 days out. |
| `inboundDateFrom` | Earliest return date for round-trips, `YYYY-MM-DD`. |
| `inboundDateTo` | Latest return date for round-trips, `YYYY-MM-DD`. |
| `durationFrom` | Minimum trip length in days (round-trip). |
| `durationTo` | Maximum trip length in days (round-trip). |
| `market` | Market code for currency/language, e.g. `en-gb`, `en-ie`, `de-de`. |
| `maxPrice` | Only return fares at or below this price. |
| `maxItems` | Maximum fares to return (0 = no limit). |

#### Example input

```json
{
  "departureAirports": ["DUB", "STN"],
  "tripType": "oneWay",
  "outboundDateFrom": "2026-10-01",
  "outboundDateTo": "2026-10-31",
  "market": "en-gb",
  "maxPrice": 30,
  "maxItems": 100
}
```

### Output

![Ryanair Fares Scraper output — one clean row per fare with route, dates, price and booking link](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/ryanair-fares-scraper-output.png)

Each dataset item is one fare. One-way example:

```json
{
  "departureAirport": "DUB",
  "departureAirportName": "Dublin",
  "departureCity": "Dublin",
  "departureCountry": "Ireland",
  "arrivalAirport": "BCN",
  "arrivalAirportName": "Barcelona",
  "arrivalCity": "Barcelona",
  "arrivalCountry": "Spain",
  "departureDate": "2026-10-06T21:45:00",
  "arrivalDate": "2026-10-07T01:20:00",
  "price": 14.99,
  "currency": "EUR",
  "tripType": "oneWay",
  "flightNumber": "FR7452",
  "bookingUrl": "https://www.ryanair.com/gb/en/trip/flights/select?...&originIata=DUB&destinationIata=BCN",
  "scrapedAt": "2026-09-08T13:51:24.483Z"
}
```

Round-trip example (adds the return leg and totals):

```json
{
  "departureAirport": "DUB",
  "arrivalAirport": "AGA",
  "departureDate": "2026-10-05T05:45:00",
  "price": 28.49,
  "currency": "EUR",
  "tripType": "roundTrip",
  "returnDate": "2026-10-07T09:35:00",
  "returnPrice": 27.99,
  "totalPrice": 56.48,
  "durationDays": 2,
  "flightNumber": "FR3995",
  "bookingUrl": "https://www.ryanair.com/gb/en/trip/flights/select?...&isReturn=true"
}
```

#### Output schema

| Field | Type | Description |
|-------|------|-------------|
| `departureAirport` | string | Origin airport IATA code. |
| `departureAirportName` | string | Origin airport full name. |
| `departureCity` | string | Origin city. |
| `departureCountry` | string | Origin country. |
| `arrivalAirport` | string | Destination airport IATA code. |
| `arrivalAirportName` | string | Destination airport full name. |
| `arrivalCity` | string | Destination city. |
| `arrivalCountry` | string | Destination country. |
| `departureDate` | string (ISO date) | Outbound departure date-time. |
| `arrivalDate` | string (ISO date) | Outbound arrival date-time. |
| `price` | number | Cheapest fare price (outbound for round-trips). |
| `currency` | string | Currency code of the price. |
| `tripType` | string | `oneWay` or `roundTrip`. |
| `inboundDepartureDate` | string (ISO date) | Return departure date-time (round-trip). |
| `inboundArrivalDate` | string (ISO date) | Return arrival date-time (round-trip). |
| `returnDate` | string (ISO date) | Return departure date-time (round-trip). |
| `returnPrice` | number | Return fare price (round-trip). |
| `totalPrice` | number | Combined outbound + return price (round-trip). |
| `durationDays` | number | Trip length in days (round-trip). |
| `flightNumber` | string | Ryanair flight number. |
| `inboundFlightNumber` | string | Return flight number (round-trip). |
| `bookingUrl` | string (URL) | Deep link to continue booking. |
| `scrapedAt` | string (ISO date) | When the fare was collected. |

### Need more travel data?

Pair the Ryanair Fares Scraper with other travel and location datasets:

- [Google Flights Scraper](https://apify.com/hipersoft/google-flights-scraper) — compare fares across airlines and routes.
- [Booking Hotels Scraper](https://apify.com/hipersoft/booking-hotels-scraper) — hotel prices and availability for your destination.
- [Agoda Hotels Scraper](https://apify.com/hipersoft/agoda-hotels-scraper) — more hotel rates and reviews.
- [Airbnb Scraper](https://apify.com/hipersoft/airbnb-scraper) — short-stay listings and nightly prices.
- [REST Countries Scraper](https://apify.com/hipersoft/restcountries-scraper) — enrich destinations with country data.

### FAQ

**How many fares can I scrape?**
As many as are available across the airports and date window you choose. Use `maxItems` to cap the run, or set it to `0` for no limit.

**Do I need any setup or a login?**
No setup — just add your departure airports and date window and click Run. No account with the airline is needed.

**One-way or round-trip?**
Both. Set `tripType` to `oneWay` or `roundTrip`; round-trip searches also let you set the return window and trip length in days.

**Which currencies can I get?**
Set the `market` field (e.g. `en-gb` for GBP, `en-ie` for EUR, `de-de` for EUR). Prices and the currency field follow the market.

**How do I filter to only cheap deals?**
Set `maxPrice` to only return fares at or below your budget, then sort the dataset by `price` to see the cheapest first.

**What export formats are supported?**
JSON, CSV, Excel and XML — download from the run or pull from the API.

**How fresh is the data?**
Fares are collected live each run, so schedule the actor to keep a rolling history for price tracking and deal alerts.

**Can I connect it to my own tools?**
Yes. The `Ryanair Fares Scraper` can be connected with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JS/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

**Is it legal?**
The scraper returns only publicly available fare information. You are responsible for complying with Ryanair's terms and applicable laws.

### Related Actors

- [Google Flights Scraper](https://apify.com/hipersoft/google-flights-scraper)
- [Booking Hotels Scraper](https://apify.com/hipersoft/booking-hotels-scraper)
- [Agoda Hotels Scraper](https://apify.com/hipersoft/agoda-hotels-scraper)
- [Airbnb Scraper](https://apify.com/hipersoft/airbnb-scraper)

### Notes

Original clean-room implementation. Returns only public data; you are responsible for compliance with Ryanair's terms. Not affiliated with Ryanair.

# Actor input Schema

## `departureAirports` (type: `array`):

Airport IATA codes to search cheap fares FROM, one per line (e.g. DUB, STN, BGY). Unknown codes are warned about and skipped.

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

Search one-way fares or round-trip fares (outbound + return).

## `outboundDateFrom` (type: `string`):

Earliest outbound departure date, formatted YYYY-MM-DD. Leave empty to default to today.

## `outboundDateTo` (type: `string`):

Latest outbound departure date, formatted YYYY-MM-DD. Leave empty to default to 30 days from today.

## `inboundDateFrom` (type: `string`):

Earliest return departure date for round-trip searches, YYYY-MM-DD. Leave empty to reuse the outbound window.

## `inboundDateTo` (type: `string`):

Latest return departure date for round-trip searches, YYYY-MM-DD. Leave empty to reuse the outbound window.

## `durationFrom` (type: `integer`):

Minimum number of days between outbound and return for round-trip searches.

## `durationTo` (type: `integer`):

Maximum number of days between outbound and return for round-trip searches.

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

Market code controlling currency and language, e.g. en-gb (GBP), en-ie (EUR), de-de, it-it, es-es, pl-pl.

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

Optional. Only return fares at or below this price (in the market's currency). Leave empty for no limit.

## `maxItems` (type: `integer`):

Maximum number of fares to return across all airports. Use 0 for no limit.

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

Optional proxy settings. Not required — the fare data is fetched over plain datacenter HTTP.

## Actor input object example

```json
{
  "departureAirports": [
    "DUB"
  ],
  "tripType": "oneWay",
  "outboundDateFrom": "",
  "outboundDateTo": "",
  "inboundDateFrom": "",
  "inboundDateTo": "",
  "durationFrom": 2,
  "durationTo": 7,
  "market": "en-gb",
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

The results as dataset items.

# 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 = {
    "departureAirports": [
        "DUB"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/ryanair-fares-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 = { "departureAirports": ["DUB"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/ryanair-fares-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "departureAirports": [
    "DUB"
  ]
}' |
apify call hipersoft/ryanair-fares-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/ryanair-fares-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/v6hs9Xtd2aGPgcS4h/builds/ZGkJbpkQ2tkRuDTuc/openapi.json
