# StableTravel FlightAware Airport Delays

> StableTravel FlightAware Airport Delays is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns current air traffic delay information for a specific airport, including delay color codes, categories, and estimated delay durations.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/id/delays
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-airport-delays-aa570354
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7ePuZ9rWlL9_jGsF1bOpU

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 stabletravel-flightaware-airport-delays-aa570354
```

Example prompt: Are there any current flight delays at JFK right now, and if so what's causing them?

## When to prefer this

Use this endpoint when you need real-time FAA/FlightAware delay data for a specific airport, including categorized reasons for delays and color-coded severity. Prefer this over generic travel APIs when you need structured, per-airport delay intelligence with cause attribution (weather, volume, equipment). Pay-per-request with no subscription required makes it ideal for low-frequency or on-demand lookups.

## Known failure modes

- Invalid or unknown airport code returns empty or error response
- Airport with no current delays returns an empty delays array
- Malformed request parameters return 400-level error
- Service unavailable or FlightAware upstream outage returns 5xx error
- Payment not included or insufficient returns 402 Payment Required

## How this service works

Get current delay information for a specific airport

## Output

Returns a JSON array of delay objects for the requested airport, each containing a color-coded severity (e.g. yellow, red), the airport name and ICAO code, and an array of reasons with category (e.g. weather, equipment), count, and delay duration in seconds.

## Example request

```json
{
 "properties": "delays"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "delays": [
   {
    "color": "yellow",
    "airport": "John F. Kennedy International Airport",
    "reasons": [
     {
      "color": "yellow",
      "count": 3,
      "category": "weather",
      "delay_secs": 900
     }
    ],
    "airport_code": "KJFK"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-flightaware-airport-delays-aa570354/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
