list_airport_events
nasstatus.faa.govReturns active airport events from https://nasstatus.faa.gov, normalized across ground stops, ground delays, closures, arrival and departure delays, deicing, and free-form NOTAMs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_airport_events?
Returns active airport events from https://nasstatus.faa.gov, normalized across ground stops, ground delays, closures, arrival and departure delays, deicing, and free-form NOTAMs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass airport_code, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"items": [
{}
],
"retrieved_at_utc": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/bdda45e0-48d7-47f7-835c-e2f33943c63a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "bdda45e0-48d7-47f7-835c-e2f33943c63a",
"variables": {
"airport_code": "",
"timeout_seconds": 20
}
}'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="bdda45e0-48d7-47f7-835c-e2f33943c63a") — the "list_airport_events" function, which returns active airport events from https://nasstatus.faa.gov, normalized across ground stops, ground delays, closures, arrival and departure delays, deicing, and free-form NOTAMs.. It takes airport_code (str), timeout_seconds (int). Return the result as structured JSON.