# 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).

Retrieves real-time and scheduled arrival flights for Miami International Airport (KMIA) including flight status, origin, operator, and timing details

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/KMIA/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-efbd2a0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lgF0xjEVXTro9PPw9qEwK

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

Example prompt: Can you pull up all the real-time arriving flights at Miami International Airport (KMIA) right now, showing me which ones are on time, delayed, or diverted?

## When to prefer this

Use this endpoint when you need live or recent arrival flight data specifically for Miami International Airport (KMIA). Prefer this over generic flight search endpoints when you need a full airport arrival board view rather than tracking a single flight. Choose this over departure endpoints when the user cares about inbound traffic, gate arrival times, and arrival status.

## Known failure modes

- Invalid airport code returns 404 or empty results
- Exceeding max_pages limit truncates results
- Cursor pagination token expired or invalid returns error
- No arrivals in time window returns empty arrivals array
- Rate limiting or payment failure returns 402 Payment Required
- Network timeout for real-time data returns 503

## How this service works

Get arrival flights for a specific airport

## Output

Returns an array of arrival flight objects each containing flight identifier, origin airport details (city, IATA/ICAO codes, timezone), operator, flight status, actual/scheduled gate and runway arrival times, route string, and flags for diverted or blocked status. Also includes pagination links for additional pages of results.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "realtime",
   "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": {
      "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-efbd2a0d/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)
