# FlightAware Airport Delays - EWR

> FlightAware Airport Delays - EWR 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 delay information for Newark Liberty International Airport (EWR), including delay categories, severity, and affected flight counts

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/EWR/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/flightaware-airport-delays-ewr-36592e50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S2HOUxTsJymF4_SOyi6kL

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 flightaware-airport-delays-ewr-36592e50
```

Example prompt: Are there any delays at Newark Liberty airport (EWR) right now, and if so what's causing them?

## When to prefer this

Use this endpoint when you need real-time, structured delay data specifically for EWR (Newark Liberty) sourced from FlightAware's authoritative feed. Prefer this over generic travel APIs when you need machine-readable delay categories and severity colors for automation or alerting. Choose this over scraping airline websites when you need consistent, pay-per-use access without auth setup.

## Known failure modes

- Empty delays array when no active delays exist — not an error, just no disruptions
- Network timeout or 402 payment required if payment header is missing or insufficient
- Stale data if FlightAware upstream feed has a lag
- May not reflect gate-level or carrier-specific delays, only systemic airport delays

## How this service works

Get current delay information for a specific airport

## Output

Returns an array of delay objects for EWR, each containing an airport code, a color-coded severity indicator (e.g. yellow, red), and a list of reasons with category, count of affected flights, and average delay duration in seconds. If no delays are active, an empty array is returned.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "delays"
     ],
     "properties": {
      "delays": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "color": {
          "type": "string"
         },
         "airport": {
          "type": "string"
         },
         "reasons": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "color": {
             "type": "string"
            },
            "count": {
             "type": "number"
            },
            "category": {
             "type": "string"
            },
            "delay_secs": {
             "type": "number"
            }
           },
           "additionalProperties": false
          }
         },
         "airport_code": {
          "type": "string"
         }
        },
        "additionalProperties": false
       }
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flightaware-airport-delays-ewr-36592e50/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)
