Live
list_airport_disruptions
api.worldmonitor.appReturns airport delay alerts, closure status, cancellation counts, severity, causes, and full non-empty airport records from https://worldmonitor.app.
Parameters6
Runs10
Updated3d ago
Operational10 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_airport_disruptions?
Returns airport delay alerts, closure status, cancellation counts, severity, causes, and full non-empty airport records from https://worldmonitor.app. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, min_severity, airport_codes, limit, ops_limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"alerts": [
{}
],
"region": "<string>",
"source": "<string>",
"min_severity": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/84f79c2a-2d0c-4d38-9bd4-e1e33d5727b2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "84f79c2a-2d0c-4d38-9bd4-e1e33d5727b2",
"variables": {
"region": "all",
"min_severity": "all",
"airport_codes": [],
"limit": 0,
"ops_limit": 20,
"timeout_seconds": 30
}
}'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="84f79c2a-2d0c-4d38-9bd4-e1e33d5727b2") — the "list_airport_disruptions" function, which returns airport delay alerts, closure status, cancellation counts, severity, causes, and full non-empty airport records from https://worldmonitor.app.. It takes region (str), min_severity (str), airport_codes (list[str]), limit (int), ops_limit (int), timeout_seconds (int). Return the result as structured JSON.