# StableTravel FlightAware Airport Flights

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

Retrieves arrivals, departures, enroute, or scheduled flights for a specific airport using FlightAware data

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/id/flights
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-airport-flights-52f7ca65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mY1XdiPJD6n7Y2hUqIoLA

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-flights-52f7ca65
```

Example prompt: Show me all current arrivals at Miami International Airport (KMIA) for American Airlines — give me up to 2 pages of results.

## When to prefer this

Use this endpoint when you need real-time or scheduled flight data for a specific airport by ICAO/airport ID, especially when you need to filter by direction (arrivals vs departures) or a specific airline. Prefer this over generic flight search endpoints when your use case is airport-centric monitoring or display rather than booking or offer search.

## Known failure modes

- Invalid airport ID returns an error or empty result
- Unsupported flight type enum value causes a validation error
- Unknown airline code returns empty results
- Pagination cursor mismatch or expiry returns an error
- Airport not covered by FlightAware data returns no results
- Rate limit or payment failure returns a 402 or 429 response

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

A paginated list of flights at the specified airport, filtered by type (arrivals, departures, enroute, scheduled_arrivals, or scheduled_departures) and optionally by airline, including flight details sourced from FlightAware.

## 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": {
      "type": {
       "enum": [
        "arrivals",
        "departures",
        "enroute",
        "scheduled_arrivals",
        "scheduled_departures"
       ],
       "type": "string"
      },
      "cursor": {
       "type": "string"
      },
      "airline": {
       "type": "string"
      },
      "max_pages": {
       "type": "number"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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