The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Flyan listing page.
An open-source unofficial API wrapper to get flight data from Ryanair.
[!TIP] New: MCP server for AI agents. Plug Flyan into Claude Desktop, Claude Code, or Cursor and search Ryanair flights in natural language. Jump to the MCP Quickstart.
Or using uv:
Creates a new RyanAir client instance.
Parameters:
currency (str, optional): Preferred currency for pricing. Defaults to "EUR". Must be a valid currency code from the supported currencies list.Example:
get_oneways(params: FlightSearchParams) -> list[Flight]Search for one-way flights.
Parameters:
params (FlightSearchParams): Search parametersReturns:
list[Flight]: List of available flightsParameters for searching flights.
Parameters:
from_airport (str): IATA code of departure airport (e.g., "DUB")from_date (datetime): Earliest departure dateto_date (datetime): Latest departure datedestination_country (str, optional): Country code for destinationmax_price (int, optional): Maximum price filterto_airport (str, optional): IATA code of arrival airportdeparture_time_from (str, optional): Earliest departure time (HH:MM format)departure_time_to (str, optional): Latest departure time (HH:MM format)Example:
Extended parameters for return flight searches.
Represents a single flight.
Attributes:
departure_airport (Airport): Departure airport informationarrival_airport (Airport): Arrival airport informationdeparture_date (datetime): Departure date and timearrival_date (datetime): Arrival date and timeprice (float): Flight pricecurrency (str): Price currencyflight_key (str): Unique flight identifierflight_number (str): Flight numberprevious_price (Optional[str | float]): Previous price if availableRepresents airport information.
Attributes:
country_name (str): Country nameiata_code (str): IATA airport codename (str): Airport nameseo_name (str): SEO-friendly namecity_name (str): City namecity_code (str): City codecity_country_code (str): Country codeRepresents a return flight booking.
Attributes:
outbound (Flight): Outbound flightinbound (Flight): Return flightsummary_price (float): Total price for both flightssummary_currency (str): Currency for total priceprevious_price (str | float): Previous total price if availableRepresents an airport in Ryanair's live network. Returned by the explore methods.
Attributes:
iata_code (str): IATA airport codename (str): Airport nameseo_name (str): SEO-friendly namecountry_code (str): Lowercase ISO2 country code (e.g. "ie", "es")city_code (str): City code (e.g. "LONDON", "DUBLIN")region_code (Optional[str]): Region code (e.g. "SCOTLAND", "ANDALUSIA")currency_code (str): Local currency codetime_zone (str): IANA timezone (e.g. "Europe/Dublin")base (bool): True if this is a Ryanair baselatitude (float), longitude (float): Coordinatesroutes (list[str]): Raw route strings (year-round)seasonal_routes (list[str]): Raw route strings (seasonal-only)categories (list[str]): Marketing categories assigned by Ryanairaliases (list[str]): Alternative namesHelpers: airport_routes(), country_routes(), seasonal_airport_routes(),
typed_routes(), typed_seasonal_routes().
Returned by explore_with_fares(). Pairs a reachable destination with its
cheapest sampled fare, if one was returned by the price probe.
Attributes:
airport (NetworkAirport): The destination airportfare (Optional[Flight]): The cheapest sampled fare in the window, or None
if the route is in the network but no priced inventory came back (no flights
in the window, sold out, etc.)Explore Mode answers the question "where can I actually fly from here?". It reads Ryanair's live network metadata once and exposes the reachable destinations from any airport, optionally grouped, filtered, or joined with the cheapest fare in a date window.
All methods below are available on both RyanAir and AsyncRyanAir.
Country codes are lowercase ISO2. Region and city codes come from the live
network (uppercase, e.g. SCOTLAND, ANDALUSIA, COSTA_DE_SOL, LONDON,
MILAN).
Airports without a region_code are collected under the empty-string key,
so callers can decide whether to surface or drop them.
Ryanair's seasonalRoutes list is sparsely populated upstream, so this often
returns [] outside of summer/winter schedule transitions. The method is
provided so callers do not need to peek at the raw route strings.
explore_with_fares() joins the network destinations with a oneWayFares
probe, so each destination comes back with its cheapest sampled Flight (or
None if no fare was returned for that route in the window). It costs one
network call plus one fare call.
AsyncRyanAir mirrors every explore method:
If you call multiple explore methods in a row, wrap the transport in
CachingTransport so the network metadata is fetched once and reused.
[!IMPORTANT] Two commands and you're done:
Now your agent can search Ryanair flights in natural language. No API keys, no accounts.
Flyan ships an optional Model Context Protocol server so your agent can search Ryanair fares from natural-language prompts like "find me a cheap flight from Dublin to Spain in August under €150" or "what's the cheapest day in July to fly DUB to BCN".
1. Install Flyan with the MCP extra:
Or with pip:
This installs a flyan-mcp console script on your PATH.
2. Add it to your agent:
Claude Code (one-liner):
Claude Desktop: open ~/Library/Application Support/Claude/claude_desktop_config.json
on macOS (or %APPDATA%\Claude\claude_desktop_config.json on Windows) and add:
Then restart Claude Desktop.
Cursor: Settings → MCP → Add new server, name flyan, command flyan-mcp.
The server returns prices in EUR by default. To get them in another
currency, set the FLYAN_CURRENCY env var to any supported ISO 4217 code
before launching flyan-mcp:
Or pass it through your agent's MCP config:
Unknown or unsupported codes silently fall back to EUR.
3. Try it. Ask your agent:
"Find me a one-way from Dublin to anywhere in Spain in the first week of August under €150."
The agent should call find_flights with destination_country="es", then
summarize the cheapest options.
The server exposes four curated tools so the agent can pick reliably:
find_flights for one-way searches with optional country, IATA, or price filtersfind_anywhere_under for "where can I go for under £X" promptsexplore_destinations for "what countries can I reach from X"cheapest_per_day for "what's the cheapest day this month to fly X to Y"No API keys, accounts, or rate-limit setup. Ryanair's API is anonymous and
the server reuses a single RyanAir client across calls.
The SDK supports all airports in Ryanair's network. Airport codes must be valid 3-letter IATA codes. The live list is fetched from Ryanair's aggregate endpoint via client.get_network(); iterate network.airports for the full set.
Popular airports include:
The SDK supports multiple currencies. Some popular ones include:
See currencies.json for the complete list.
The SDK includes automatic retry logic with exponential backoff to handle rate limiting and temporary API issues. It will retry failed requests up to 5 times before giving up.
This is an open-source project. Contributions are welcome!
This is an unofficial API wrapper and is not affiliated with Ryanair. Use at your own risk and ensure you comply with Ryanair's terms of service.