# Ryanair Spain Route Price Monitor

**Use case:** 

Monitor Ryanair Madrid to Palma fare calendars with available and unavailable dates, prices, currency, and route data.

## Input

```json
{
  "departureIata": "MAD",
  "arrivalIata": "PMI",
  "dateFrom": "2026-09-01",
  "dateTo": "2026-09-30",
  "maxResults": 120,
  "maxRoutes": 10,
  "currency": "EUR",
  "market": "es-es",
  "language": "en",
  "includeUnavailable": true
}
```

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