Live
list_ground_delay_programs
nasstatus.faa.govReturns currently active Ground Delay Programs with every non-empty affected-airport event detail exposed by https://nasstatus.faa.gov; the array is empty when none are active.
Parameters1
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_ground_delay_programs?
Returns currently active Ground Delay Programs with every non-empty affected-airport event detail exposed by https://nasstatus.faa.gov; the array 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
{
"retrieved_at_utc": "<string>",
"ground_delay_programs": [
{}
],
"ground_delay_program_count": 0,
"active_airport_record_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/dc33f4e4-e9b1-45a1-815a-5994501452ee/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dc33f4e4-e9b1-45a1-815a-5994501452ee",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="dc33f4e4-e9b1-45a1-815a-5994501452ee") — the "list_ground_delay_programs" function, which returns currently active Ground Delay Programs with every non-empty affected-airport event detail exposed by https://nasstatus.faa.gov; the array is empty when none are active.. It takes timeout_seconds (int). Return the result as structured JSON.