# StableTravel FlightAware Scheduled Arrivals – KJFK

> StableTravel FlightAware Scheduled Arrivals – KJFK 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 the list of scheduled arrival flights for JFK International Airport, sourced via FlightAware data

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/KJFK/flights/scheduled-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/stabletravel-flightaware-scheduled-arrivals-kjfk-6d96e315
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aJbrWaUJhrQTG0_ISrgjz

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-scheduled-arrivals-kjfk-6d96e315
```

Example prompt: Pull up the scheduled arrivals at JFK — show me all incoming flights, and filter by United Airlines if you can.

## When to prefer this

Use this endpoint when you specifically need scheduled (not departed or en-route) inbound flights for JFK (KJFK). It is backed by FlightAware data and supports airline filtering and pagination, making it suitable for building arrival boards, monitoring specific carrier schedules, or feeding downstream travel planning workflows. Prefer this over generic flight search APIs when you need airport-centric arrival scheduling data rather than route-based fare search.

## Known failure modes

- Invalid or unsupported airport code returns an error or empty result
- Airline filter value does not match any known operator code, returning empty scheduled_arrivals array
- Pagination cursor is stale or invalid, causing a failed or repeated page fetch
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- No scheduled arrivals in the current window returns an empty array with null next link

## How this service works

Get scheduled arrival flights for a specific airport

## Output

Returns a paginated array of scheduled arrival flights at KJFK, each including flight identifier, origin airport details (city, IATA/ICAO codes, timezone), operator, route, flight status, scheduled and actual gate-in times, diversion and block flags, and pagination links for retrieving additional pages.

## 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": [
      "scheduled_arrivals"
     ],
     "properties": {
      "links": {
       "type": "object",
       "properties": {
        "next": {
         "anyOf": [
          {
           "type": "string"
          },
          {
           "type": "null"
          }
         ]
        }
       },
       "additionalProperties": false
      },
      "num_pages": {
       "type": "number"
      },
      "scheduled_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": [
      
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-flightaware-scheduled-arrivals-kjfk-6d96e315/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)
