# FAA Single Airport Status

> FAA Single Airport Status is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns live FAA NAS status for a single US airport by IATA code, including any active closures, ground stops, ground delays, or arrival/departure delays.

## Facts

- Endpoint: GET https://www.x402financialdata.com/aviation/airport-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/faa-single-airport-status-68ce1cb5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wOvCLngWWfjphdukP_Mgj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability faa-single-airport-status-68ce1cb5
```

Example prompt: What's the current FAA status for JFK — are there any active ground stops, delays, or closures right now?

## When to prefer this

Use this endpoint when you need real-time, authoritative FAA NAS status for a specific US airport by IATA code. Prefer it over general flight-tracking APIs when you specifically want the official FAA ground stop/delay/closure status rather than flight-level delay data. Ideal for pre-departure checks, travel automation workflows, or monitoring pipelines that need to react to FAA-issued airspace restrictions.

## Known failure modes

- Invalid or unrecognized IATA code returns an error
- Non-US airports not covered by FAA NAS feed may return no result
- Temporary FAA feed outages may cause stale or missing data
- Payment failure (insufficient USDC balance) blocks the call

## How this service works

Status for one US airport by IATA code: any active FAA closure, ground stop, ground delay, or arrival/departure delay, or a clean 'normal' result when there's nothing active. Live from the FAA's official NAS status feed. $0.01/call. Query: ?airport=JFK

## Output

Returns the current FAA NAS status for the requested airport, indicating whether operations are normal or listing any active conditions such as closures, ground stops, ground delay programs, or arrival/departure delays — sourced live from the FAA's official NAS status feed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "airport"
     ],
     "properties": {
      "airport": {
       "type": "string",
       "description": "3-letter IATA airport code, e.g. JFK, LAX, ORD"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/faa-single-airport-status-68ce1cb5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
