# FlightAware Airport Arrivals

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

Returns a list of arriving flights at a specified airport (KJFK) with real-time status, origin, and timing data

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/KJFK/flights/arrivals
- 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-airport-arrivals-ba73f88f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fnH_Lic5m-1GUUqmLncZg

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-arrivals-ba73f88f
```

Example prompt: What flights are currently arriving at JFK? Show me the latest arrivals — filter by Delta if you can.

## When to prefer this

Use this endpoint when you need real-time or recent arrival flight data for JFK specifically (KJFK hardcoded), including flight status, origin, and timing. Choose this over generic flight search APIs when you need airport-level arrival boards rather than route-level searches. Prefer this over departure endpoints when monitoring inbound traffic or coordinating pickups.

## Known failure modes

- Invalid or unknown airport code returns an error or empty results
- Airline filter string that doesn't match known operators may return empty array
- Pagination cursor mismatch returns an error or restarts from beginning
- Rate limit exceeded if many pages requested in rapid succession
- Service unavailability from upstream FlightAware API returns 5xx error

## How this service works

Get arrival flights for a specific airport

## Output

Returns a paginated array of arrival flight objects, each containing the flight identifier, origin airport details (city, IATA/ICAO codes, timezone), route, operator, flight status, actual gate-in and wheels-on times, and flags for diverted or blocked flights. Also includes a pagination link for fetching additional pages of results.

## 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": {
       "type": "string"
      },
      "cursor": {
       "type": "string"
      },
      "airline": {
       "type": "string"
      },
      "max_pages": {
       "type": "number"
      }
     },
     "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": [
      "arrivals"
     ],
     "properties": {
      "links": {
       "type": "object",
       "properties": {
        "next": {
         "anyOf": [
          {
           "type": "string"
          },
          {
           "type": "null"
          }
         ]
        }
       },
       "additionalProperties": false
      },
      "arrivals": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "ident": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "route": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "origin": {
          "anyOf": [
           {
            "type": "object",
            "properties": {
             "city": {
              "anyOf": [
               {
                "type": "string"
               },
               {
                "type": "null"
               }
              ]
             },
             "code": {
              "anyOf": [
               {
                "type": "string"
               },
            
… (truncated)
```

## More

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