Live
list_airport_and_enroute_events
nasstatus.faa.govReturns airport and en-route event records together from https://nasstatus.faa.gov for list, tile, or map presentation while preserving every non-empty source field.
Parameters2
Runs4
Updated1d ago
Operational4 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_and_enroute_events?
Returns airport and en-route event records together from https://nasstatus.faa.gov for list, tile, or map presentation while preserving every non-empty source field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass view, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"view": "<string>",
"airport_events": [
{}
],
"en_route_events": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/1e17af3f-8ed3-4d0b-85c9-84d1c383dd6c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1e17af3f-8ed3-4d0b-85c9-84d1c383dd6c",
"variables": {
"view": "list",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="1e17af3f-8ed3-4d0b-85c9-84d1c383dd6c") — the "list_airport_and_enroute_events" function, which returns airport and en-route event records together from https://nasstatus.faa.gov for list, tile, or map presentation while preserving every non-empty source field.. It takes view (str), timeout_seconds (int). Return the result as structured JSON.