search_wizz_flights
wizzair.comSearches https://wizzair.com for available flights between two airports on a specific date, returning flight schedules and regular and Wizz Discount Club fares. If Wizz Air rate-limits its detailed search, it returns the site's timetable fare data for the same route and date.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_wizz_flights?
Searches https://wizzair.com for available flights between two airports on a specific date, returning flight schedules and regular and Wizz Discount Club fares. If Wizz Air rate-limits its detailed search, it returns the site's timetable fare data for the same route and date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin, destination, departure_date, adults, children, infants, include_wizz_discount_club and get the result back without maintaining a scraper.
Response
{
"data": {},
"query": {},
"result_mode": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c9a36c68-1d1b-4eaa-a48e-57e6a4895b12/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c9a36c68-1d1b-4eaa-a48e-57e6a4895b12",
"variables": {
"origin": "LTN",
"destination": "BUD",
"departure_date": "",
"adults": 1,
"children": 0,
"infants": 0,
"include_wizz_discount_club": true
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c9a36c68-1d1b-4eaa-a48e-57e6a4895b12") — the "search_wizz_flights" function, which searches https://wizzair.com for available flights between two airports on a specific date, returning flight schedules and regular and Wizz Discount Club fares. If Wizz Air rate-limits its detailed search, it returns the site's timetable fare data for the same route and date.. It takes origin (str), destination (str), departure_date (str), adults (int), children (int), infants (int), include_wizz_discount_club (bool). Return the result as structured JSON.