# FlightAware Airline Disruption Counts

> FlightAware Airline Disruption Counts is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns flight disruption counts (delays and cancellations) broken down by airline, with scores, totals, and pagination support for a specified time period.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/disruption-counts/airline
- 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/flightaware-e9b1ae77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8d3feBqUkg1YfvOjv5bU

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-e9b1ae77
```

Example prompt: Can you pull the FlightAware disruption counts for all airlines over the last 7 days and tell me which ones have the most delays and cancellations?

## When to prefer this

Use this endpoint when you need aggregated disruption metrics (delays + cancellations + score) specifically grouped by airline for trend analysis, carrier comparison, or reliability monitoring. Prefer this over raw flight-level endpoints when you need rolled-up counts rather than individual flight details.

## Known failure modes

- Invalid time_period enum value returns 400 error
- Unknown entity_id_filter returns empty entities array
- Expired or invalid cursor returns pagination error
- Rate limit exceeded returns 429
- Network timeout or upstream FlightAware outage returns 503

## How this service works

Get disruption counts by entity type (airline, origin, destination)

## Output

A paginated list of airline entities, each with: entity_id, entity_type, name, disruption score, total flights, delay count, and cancellation count. Also includes pagination metadata (num_pages, next cursor link).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "max_pages": 1
  }
 }
}
```

## 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": {
      "cursor": {
       "type": "string"
      },
      "max_pages": {
       "type": "number"
      },
      "time_period": {
       "enum": [
        "today",
        "yesterday",
        "last3days",
        "last7days",
        "last14days",
        "last30days"
       ],
       "type": "string"
      },
      "entity_id_filter": {
       "type": "string"
      }
     },
     "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": [
      "entities"
     ],
     "properties": {
      "links": {
       "type": "object",
       "properties": {
        "next": {
         "anyOf": [
          {
           "type": "string"
          },
          {
           "type": "null"
          }
         ]
        }
       },
       "additionalProperties": false
      },
      "entities": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "score": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "total": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "delays": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "entity_id": {
          "type": "string"
         },
         "entity_type": {
          "type": "strin
… (truncated)
```

## More

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