Live
get_active_ground_stops
nasstatus.faa.govReturns currently active Ground Stops with every non-empty airport event detail exposed by https://nasstatus.faa.gov; the ground_stops array is empty when none are active.
Parameters1
Runs5
Updated1d ago
Operational5 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 get_active_ground_stops?
Returns currently active Ground Stops with every non-empty airport event detail exposed by https://nasstatus.faa.gov; the ground_stops 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
{
"ground_stops": [
{}
],
"retrieved_at_utc": "<string>",
"ground_stop_count": 0,
"active_airport_record_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ffe493bf-38b5-4810-8533-b1ed45c51889/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ffe493bf-38b5-4810-8533-b1ed45c51889",
"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="ffe493bf-38b5-4810-8533-b1ed45c51889") — the "get_active_ground_stops" function, which returns currently active Ground Stops with every non-empty airport event detail exposed by https://nasstatus.faa.gov; the ground_stops array is empty when none are active.. It takes timeout_seconds (int). Return the result as structured JSON.