# AYCF Radar > A free tool for planning trips on the Wizz Air "All You Can Fly" (AYCF) pass. It shows every route bookable on the pass right now, real scheduled flight times, 1- and 2-stop connections, and paid Ryanair onward legs to reach places Wizz doesn't fly. No login, no cost. Data comes from Wizz's public daily availability list and public timetable, refreshed hourly. Unofficial — not affiliated with, endorsed by, or connected to Wizz Air or Ryanair. Bookings are completed directly with the airline. Flight times are the published schedule; AYCF seat availability is only confirmed at booking; connection layover times are estimates. ## For agents / programmatic use The public read API is open (CORS `*`, no key) and returns JSON. Cities are plain names (e.g. `Budapest`, `Tel Aviv`). All data is scoped to the current AYCF booking window (~3–4 days). - [OpenAPI 3.1 spec](https://aycfradar.com/openapi.json): full machine-readable contract — import this to add AYCF Radar as a Custom GPT Action or any OpenAPI client - [API guide](https://aycfradar.com/guides/api.html): how to use it + connect it to ChatGPT / Claude / your own bots - [API index](https://aycfradar.com/api): machine-readable list of endpoints - [Route graph](https://aycfradar.com/api/graph): every city with coordinates, country, and its direct AYCF destinations — the best single call to understand the network - [Direct routes](https://aycfradar.com/api/search?from=Budapest&to=London): direct AYCF routes; `from`/`to` optional (omit `to` for "anywhere from here") - [Flight times](https://aycfradar.com/api/flights?from=Budapest&to=London): real scheduled departures for a route - [Batch availability](https://aycfradar.com/api/flights-batch) (POST, body `{"pairs":[["Budapest","London"],...]}`): for many routes at once, returns whether each has flights and on which dates — one call to check a whole city's destinations - [Connections](https://aycfradar.com/api/connections?from=Tel%20Aviv&to=Barcelona&stops=2): layover-aware 1- or 2-stop itineraries when there's no direct - [Onward](https://aycfradar.com/api/onward?from=Budapest&to=Dublin&days=30): fly AYCF free to a hub, then a paid Ryanair leg onward (real times + fares) - [Status](https://aycfradar.com/api/status): current data window and freshness ## Typical agent task To help a user plan an AYCF trip: call `/api/graph` for the network, or `/api/search?from=CITY` to list everywhere they can fly today; use `/api/flights` for exact times; use `/api/connections` when there's no direct route; use `/api/onward` to reach non-Wizz cities. Booking must be completed by the user in Wizz's pass portal — there is no per-flight booking link. ## Pages - [How it works & FAQ](https://aycfradar.com/faq.html) - [Compare vs other AYCF tools](https://aycfradar.com/compare.html) - [Privacy](https://aycfradar.com/privacy.html) - [Terms](https://aycfradar.com/terms.html)