get_flight_timetable
be.wizzair.comReturns complete outbound and return timetables from https://wizzair.com with the cheapest regular and Wizz Discount Club fare and every departure time per day.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_flight_timetable?
Returns complete outbound and return timetables from https://wizzair.com with the cheapest regular and Wizz Discount Club fare and every departure time per day. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin, destination, outbound_start_date, outbound_end_date, return_start_date, return_end_date, adults, children, infants and get the result back without maintaining a scraper.
Response
{
"query": {},
"regularFares": {},
"wizzDiscountClubFares": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/5566838a-c74c-4d53-bd0d-e6e6ed52b4aa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5566838a-c74c-4d53-bd0d-e6e6ed52b4aa",
"variables": {
"origin": "LTN",
"destination": "BUD",
"outbound_start_date": "",
"outbound_end_date": "",
"return_start_date": "",
"return_end_date": "",
"adults": 1,
"children": 0,
"infants": 0
}
}'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="5566838a-c74c-4d53-bd0d-e6e6ed52b4aa") — the "get_flight_timetable" function, which returns complete outbound and return timetables from https://wizzair.com with the cheapest regular and Wizz Discount Club fare and every departure time per day.. It takes origin (str), destination (str), outbound_start_date (str), outbound_end_date (str), return_start_date (str), return_end_date (str), adults (int), children (int), infants (int). Return the result as structured JSON.