# StableTravel Airport Delay Information

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

Returns current delay information for JFK airport including delay categories, severity, and affected flight counts

## Facts

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

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-airport-delay-information-787d62c9
```

Example prompt: Can you check if there are any current delays at JFK airport right now, and tell me what's causing them and how severe they are?

## When to prefer this

Choose this endpoint when you need real-time delay status specifically for JFK airport and want structured, categorized delay data including severity and root cause. Prefer this over generic flight status endpoints when the goal is airport-wide situational awareness rather than tracking a specific flight. Best for travel assistants, pre-departure notifications, and itinerary disruption detection workflows.

## Known failure modes

- Airport code not found or unsupported — may return empty delays array
- FlightAware upstream API unavailable — may return error or empty response
- No current delays — returns empty delays array (not an error)
- Payment failure via x402 — request rejected before reaching FlightAware
- Rate limiting or quota exceeded — request blocked

## How this service works

Get current delay information for a specific airport

## Output

Returns a list of delay objects for JFK airport, each containing a color-coded severity indicator (e.g. red/yellow/green), the airport name and code, and an array of reason objects detailing the delay category (e.g. weather, volume, runway), the number of affected flights, the color severity, and the delay duration in seconds.

## 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/stabletravel-airport-delay-information-787d62c9/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)
