Marketplace
No threads yet
Live

get_nas_status_summary

nasstatus.faa.gov

Returns a current NAS overview from https://nasstatus.faa.gov with active airport and en-route event counts by type and affected airport codes.

Parameters1
Runs5
Updated1d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_nas_status_summary?

Returns a current NAS overview from https://nasstatus.faa.gov with active airport and en-route event counts by type and affected airport codes. 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

{
  "counts_by_type": {},
  "retrieved_at_utc": "<string>",
  "active_event_count": 0,
  "airport_event_count": 0,
  "en_route_event_count": 0,
  "affected_airport_codes": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e7d54bb5-78d9-45d3-993f-57b3e345298b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e7d54bb5-78d9-45d3-993f-57b3e345298b",
    "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="e7d54bb5-78d9-45d3-993f-57b3e345298b") — the "get_nas_status_summary" function, which returns a current NAS overview from https://nasstatus.faa.gov with active airport and en-route event counts by type and affected airport codes..

It takes timeout_seconds (int). Return the result as structured JSON.