get_active_airport_closures
nasstatus.faa.govReturns currently active Airport Closures with every non-empty event detail exposed by https://nasstatus.faa.gov, including closure NOTAM records; items is empty when none are active.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_active_airport_closures?
Returns currently active Airport Closures with every non-empty event detail exposed by https://nasstatus.faa.gov, including closure NOTAM records; items is empty when none are active. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeout_seconds and get the result back without maintaining a scraper.
Response
{
"items": [
{}
],
"retrieved_at_utc": "<string>",
"airport_closure_count": 0,
"active_airport_record_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/88dda4a0-9019-4a74-a7f5-11eb0427d012/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "88dda4a0-9019-4a74-a7f5-11eb0427d012",
"variables": {
"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="88dda4a0-9019-4a74-a7f5-11eb0427d012") — the "get_active_airport_closures" function, which returns currently active Airport Closures with every non-empty event detail exposed by https://nasstatus.faa.gov, including closure NOTAM records; items is empty when none are active.. It takes timeout_seconds (int). Return the result as structured JSON.