Discover/Wizz Air API
live

Wizz Air APIwizzair.com

Access Wizz Air flight search, price calendars, fare finder, timetables, and full route maps via a single structured API. 6 endpoints, JSON responses.

Endpoint health
verified 5d ago
get_destinations_from_origin
get_timetable
fare_finder_search
get_flight_price_calendar
get_all_airports
5/5 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Wizz Air API?

The Wizz Air API gives developers structured access to flight availability, pricing, and route data across 6 endpoints. Use search_flights to query specific origin-destination pairs on a given date and receive outboundFlights and returnFlights arrays with full fare details, or call get_flight_price_calendar to find the cheapest price per day across a ~7-day window around your reference date. Both regular and Wizz Discount Club pricing are available throughout.

Try it
Use Wizz Discount Club prices
Number of adults
Number of infants
Number of children
Origin airport IATA code
Return date (YYYY-MM-DD) or null for one-way
Departure date (YYYY-MM-DD)
Destination airport IATA code
api.parse.bot/scraper/d0972764-8f37-4baa-86e8-d42f77f96646/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/d0972764-8f37-4baa-86e8-d42f77f96646/search_flights' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{}'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wizzair-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Wizz Air SDK — discover routes, compare prices, find cheapest fares."""
from parse_apis.wizz_air_api import WizzAir, TripDuration, AirportNotFound

client = WizzAir()

# List airports in the Wizz Air network
for airport in client.airports.list(limit=5):
    print(airport.short_name, airport.country_name, airport.iata)

# Construct an airport by IATA and browse its destinations
budapest = client.airport("BUD")
for dest in budapest.destinations(limit=3):
    print(f"  -> {dest.short_name} ({dest.iata}), {dest.country_name}")

# Get a price calendar for a route — returns a single PriceCalendar object
calendar = client.pricecalendars.get(
    origin_iata="BUD", destination_iata="LTN", date="2026-08-01"
)
for entry in calendar.outbound_flights[:3]:
    print(entry.date, entry.price.amount, entry.price.currency_code, entry.class_of_service)

# Get a timetable with daily cheapest prices over a date range
timetable = client.timetables.get(
    origin_iata="BUD", destination_iata="LTN",
    from_date="2026-08-01", to_date="2026-08-07"
)
for flight in timetable.outbound_flights[:2]:
    print(flight.departure_date, flight.price.amount, flight.price_type)

# Find cheapest fares anywhere from Budapest, passing the TripDuration enum
fare = client.faresearches.search(
    origin_iata="BUD", trip_duration=TripDuration.ONE_WEEK, limit=3
).first()
if fare:
    print(fare.departure_station, "->", fare.arrival_station,
          fare.regular_price.amount, fare.regular_price.currency_code,
          f"{fare.flight_duration_minutes}min")

# Typed error handling for an invalid airport
try:
    client.airport("ZZZ").destinations(limit=1).first()
except AirportNotFound as exc:
    print(f"Airport not found: {exc.origin_iata}")

print("exercised: airports.list / airport.destinations / pricecalendars.get / timetables.get / faresearches.search")
All endpoints · 6 totalmissing one? ·

Search for available flights between two airports on a specific date. Returns detailed flight info and fares. Note: May be subject to stricter rate limiting.

Input
ParamTypeDescription
wdcbooleanUse Wizz Discount Club prices
adultsintegerNumber of adults
infantsintegerNumber of infants
childrenintegerNumber of children
origin_iatarequiredstringOrigin airport IATA code
return_datestringReturn date (YYYY-MM-DD) or null for one-way
departure_daterequiredstringDeparture date (YYYY-MM-DD)
destination_iatarequiredstringDestination airport IATA code
Response
{
  "fields": {
    "returnFlights": "array",
    "outboundFlights": "array"
  },
  "sample": {
    "outboundFlights": [
      {
        "fares": [
          {
            "bundle": "basic",
            "basePrice": {
              "amount": 89.99,
              "currencyCode": "EUR"
            }
          }
        ],
        "flightNumber": "3048",
        "arrivalDateTime": "2026-05-16T00:25:00",
        "departureDateTime": "2026-05-15T22:35:00"
      }
    ]
  }
}

About the Wizz Air API

Flight Search and Fare Data

search_flights accepts an origin_iata, destination_iata, and departure_date (YYYY-MM-DD), with optional return_date for round trips and passenger counts for adults, children, and infants. Set the wdc flag to true to return Wizz Discount Club prices alongside standard fares. The response includes outboundFlights and returnFlights arrays with per-flight fare breakdowns. Note that this endpoint may be subject to stricter rate limiting than others in the set.

Price Calendars and Fare Finding

get_flight_price_calendar takes a date as a reference point and returns daily price entries for roughly 7 surrounding dates. Each entry in outboundFlights includes departureStation, arrivalStation, price, priceType, date, and classOfService. fare_finder_search operates at a higher level: pass destination_iata as 'anywhere' to scan the entire Wizz Air network for the cheapest fares from a given origin_iata, or target a specific destination. Results include both regularPrice and wdcPrice fields, and the is_return flag controls whether round-trip or one-way options are returned.

Timetables and Route Maps

get_timetable covers multi-day windows: supply from_date, to_date, origin_iata, and destination_iata to get outboundFlights and returnFlights arrays where each entry carries departureDate, available departureDates (times), and the cheapest price for that day. This is practical for comparing fares across a week or a month.

get_all_airports returns the complete Wizz Air route map as a cities array. Each city object includes iata, shortName, countryName, countryCode, latitude, longitude, currencyCode, and a connections array listing all served routes. get_destinations_from_origin filters that map by a single origin_iata, returning an origin object and a destinations array of reachable airports with full city metadata.

Reliability & maintenanceVerified

The Wizz Air API is a managed, monitored endpoint for wizzair.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wizzair.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wizzair.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a fare-alert tool that polls get_flight_price_calendar daily and notifies users when a route drops below a target price
  • Populate a route explorer map using IATA codes, coordinates, and connection lists from get_all_airports
  • Find the cheapest date to fly a specific route by comparing daily entries from get_timetable across a month-long window
  • Aggregate lowest fares across all Wizz Air destinations from a hub city using fare_finder_search with destination_iata set to 'anywhere'
  • Compare standard vs. Wizz Discount Club pricing across routes by toggling the wdc flag in search_flights or fare_finder_search
  • Enumerate all airports reachable from a given origin using get_destinations_from_origin to power autocomplete or itinerary tools
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Wizz Air have an official public developer API?+
Wizz Air does not publish a public developer API or documentation for third-party programmatic access to its flight and fare data.
What does `fare_finder_search` actually return, and how does the 'anywhere' option work?+
When destination_iata is set to 'anywhere', the endpoint scans all destinations in the Wizz Air network reachable from the given origin_iata and returns the lowest-priced options across all available dates. Each item in the items array includes outboundFlight, optionally inboundFlight for round trips, plus regularPrice and wdcPrice so you can compare both fare tiers in one response. Passing a specific IATA code instead narrows results to that single route.
How far into the future does `get_timetable` return data?+
The endpoint returns data for the from_date to to_date range you supply, limited to what Wizz Air makes available on their booking platform. Availability typically extends a few months ahead, matching the airline's open booking window. Very distant future dates may return empty or partial results if the schedule has not yet been published.
Does the API return seat availability counts or baggage fee details?+
Not currently. The endpoints return fare prices, flight dates and times, station codes, price types, and class-of-service fields, but seat inventory counts and itemised ancillary fees (baggage, seat selection) are not part of the current response schema. You can fork this API on Parse and revise it to add an endpoint targeting those details.
Can I retrieve historical flight prices or past-date timetable data?+
The API reflects Wizz Air's live booking data, which only surfaces current and future-dated flights. Past-date queries to search_flights, get_timetable, or get_flight_price_calendar are not supported by the underlying source. You can fork this API on Parse and revise it to log and store responses over time if historical price tracking is needed.
Page content last updated . Spec covers 6 endpoints from wizzair.com.
Related APIs in TravelSee all →
skyscanner.com API
Search for flights and compare prices across multiple booking agents, while exploring airports and cities to plan your trip. View daily and monthly price calendars to find the best deals for your travel dates.
makemytrip.com API
Search for airports and compare the cheapest flight fares between any two cities across multiple dates with MakeMyTrip's fare calendar to find your best deal. Quickly identify the most affordable travel options and plan your trip with real-time pricing information.
us.trip.com API
Search for flights across Trip.com and view a low-price calendar to find the cheapest travel dates for your destination. Compare flight options and prices to book your next trip at the best rates available.
kayak.com API
Access Kayak flight data including price prediction calendars, nearby airport lookups, and popular destination suggestions. Find optimal booking windows across ~300 days of pricing data, discover alternative airports near any location, and explore top destinations from any origin.
kayak.com.hk API
Search for flights and compare prices across airlines and routes, including flexible-date searches across multiple origin airports. View monthly price calendars to find the cheapest travel dates and get real-time fare information for any route.
skyscanner.co.in API
Search for flights worldwide and compare prices with autocomplete suggestions for airports and destinations. View price calendars to find the cheapest travel dates and explore real-time flight availability and pricing.
skiplagged.com API
Search for flights across airlines including hidden-city ticketing options, and look up airport information by name or code to find the best travel deals. Access Skiplagged's flight inventory and routing data to discover cheaper itineraries and alternative airport combinations.
skyscanner.de API
Search for flights across multiple airlines, view real-time pricing, and discover the cheapest travel dates with daily and monthly price calendars. Autocomplete destination suggestions to quickly find and compare flight options for your next trip.