# FlightAware Airline Disruption Counts

> FlightAware Airline Disruption Counts is a paid API for AI agents from stable-travel-git-migrate-stabletravel-router-140-merit-systems.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns ranked airline disruption statistics including cancellations, delays, and totals for a given time period, with pagination support.

## Facts

- Endpoint: GET https://stable-travel-git-migrate-stabletravel-router-140-merit-systems.vercel.app/api/flightaware/disruption-counts/airline
- 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/flightaware-airline-disruption-counts-969403b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiEjhKeEtFmkZ1M_VWWmR

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-airline-disruption-counts-969403b7
```

Example prompt: Show me which airlines have the most cancellations and delays over the last 7 days, ranked by disruption score.

## When to prefer this

Use this endpoint when you need aggregated airline-level disruption statistics (cancellations, delays, totals) ranked across carriers for a specific time window. Prefer this over individual flight lookups when the goal is comparative carrier performance analysis or monitoring systemic disruptions.

## 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
- Payment not processed returns 402

## How this service works

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

## Output

A paginated list of airline entities ranked by disruption score, each with cancellation count, delay count, total flights, entity ID, entity type, and name; plus pagination metadata including next cursor and number of pages.

## Example request

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

## 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-airline-disruption-counts-969403b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-travel-git-migrate-stabletravel-router-140-merit-systems.vercel.app](https://www.zero.xyz/host/stable-travel-git-migrate-stabletravel-router-140-merit-systems.vercel.app/llms.txt)
