# Financial Data x402 – Airport Check (FAA Advisories)

> Financial Data x402 – Airport Check (FAA Advisories) is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns real-time FAA airport advisories and ground delay programs for a given IATA airport code, paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://x402financialdata.com/aviation/airport-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-airport-check-faa-advisories-ecd019ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e0HqDFG1RwUbFc3a_-xQ8

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 financial-data-x402-airport-check-faa-advisories-ecd019ae
```

Example prompt: Are there any active FAA advisories or ground delay programs at Denver International (DEN) right now?

## When to prefer this

Use this endpoint when you need real-time FAA airport advisory and ground delay program data for a specific airport without managing API subscriptions or keys. Ideal for aviation-aware agents, travel assistants, or automated monitoring workflows that pay per query via USDC on Base or Solana using the x402 protocol.

## Known failure modes

- Invalid or unsupported IATA code returns an error or empty advisories array
- Payment failure via x402 results in HTTP 402 response and no data
- Airport not currently monitored by FAA advisory system may return no advisories
- Network or upstream FAA data outage may cause stale or unavailable data

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

Returns a JSON object with the airport's advisory status (e.g. 'advisory' or 'normal'), the IATA code, and an array of active advisories each containing the category (e.g. 'Ground Delay Programs'), reason (e.g. 'thunderstorms'), average delay duration, and maximum delay duration.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "advisory",
  "airport": "DEN",
  "advisories": [
   {
    "detail": {
     "avg": "4 hours and 12 minutes",
     "max": "8 hours and 54 minutes",
     "reason": "thunderstorms"
    },
    "airport": "DEN",
    "category": "Ground Delay Programs"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-airport-check-faa-advisories-ecd019ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
