Ryanair Scraper avatar
Ryanair Scraper
Try for free

3 days trial then $25.00/month - No credit card required now

View all Actors
Ryanair Scraper

Ryanair Scraper

epctex/ryanair-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Scrape flights from Ryanair. Crawl and extract flights, prices, availability, and more. Creates a Ryanair API to let you scrape based on round trip, one way trip, and passenger management (adults, teens, children, infants) options.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "mode": "ROUND",
11    "origin": "BER",
12    "destination": "BCN",
13    "departureDate": "2023-10-10",
14    "returnDate": "2023-10-14",
15    "flexDays": 2,
16    "adults": 1,
17    "proxy": {
18        "useApifyProxy": true
19    }
20};
21
22(async () => {
23    // Run the Actor and wait for it to finish
24    const run = await client.actor("epctex/ryanair-scraper").call(input);
25
26    // Fetch and print Actor results from the run's dataset (if any)
27    console.log('Results from dataset');
28    const { items } = await client.dataset(run.defaultDatasetId).listItems();
29    items.forEach((item) => {
30        console.dir(item);
31    });
32})();
Developer
Maintained by Community
Actor metrics
  • 5 monthly users
  • 100.0% runs succeeded
  • 0.1 days response time
  • Created in Mar 2021
  • Modified 20 minutes ago
Categories