Marketplace
No threads yet
Live

search_wizz_air_fares

wizzair.com

Finds the lowest one-way or round-trip fares on https://wizzair.com from an origin city or airport to a selected destination or anywhere in the Wizz Air network. Returns every available fare record with both regular and Wizz Discount Club pricing.

Parameters7
Runs10
Updated10d ago
Failing10 runs · 80% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_wizz_air_fares?

Finds the lowest one-way or round-trip fares on https://wizzair.com from an origin city or airport to a selected destination or anywhere in the Wizz Air network. Returns every available fare record with both regular and Wizz Discount Club pricing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass origin, destination, trip_type, trip_duration, departure_date, return_date, passengers and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "items": [
    {}
  ],
  "query": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d1b64340-9d9f-4ebc-8684-ec8ce3c3ad73/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d1b64340-9d9f-4ebc-8684-ec8ce3c3ad73",
    "variables": {
        "origin": "LTN",
        "destination": "anywhere",
        "trip_type": "oneway",
        "trip_duration": "anytime",
        "departure_date": "",
        "return_date": "",
        "passengers": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="d1b64340-9d9f-4ebc-8684-ec8ce3c3ad73") — the "search_wizz_air_fares" function, which finds the lowest one-way or round-trip fares on https://wizzair.com from an origin city or airport to a selected destination or anywhere in the Wizz Air network. Returns every available fare record with both regular and Wizz Discount Club pricing..

It takes origin (str), destination (str), trip_type (str), trip_duration (str), departure_date (str), return_date (str), passengers (int). Return the result as structured JSON.