# Dublin to London Ryanair Fare Scraper

**Use case:** 

Track Ryanair fares from Dublin to London Stansted with dates, availability, prices, currency, and route metadata.

## Input

```json
{
  "departureIata": "DUB",
  "arrivalIata": "STN",
  "dateFrom": "2026-07-01",
  "dateTo": "2026-07-15",
  "maxResults": 50,
  "maxRoutes": 10,
  "currency": "EUR",
  "market": "en-ie",
  "language": "en",
  "includeUnavailable": false
}
```

## Output

```json
{
  "departureAirport": {
    "label": "From",
    "format": "text"
  },
  "arrivalAirport": {
    "label": "To",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "departureDate": {
    "label": "Departure time",
    "format": "date"
  },
  "arrivalDate": {
    "label": "Arrival time",
    "format": "date"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "soldOut": {
    "label": "Sold out",
    "format": "boolean"
  },
  "unavailable": {
    "label": "Unavailable",
    "format": "boolean"
  },
  "newRoute": {
    "label": "New route",
    "format": "boolean"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Ryanair Flight Price Scraper](https://apify.com/automation-lab/ryanair-flight-price-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/ryanair-flight-price-scraper) to learn more, explore other use cases, and run it yourself.