# Airport Arrivals Board by IATA Code

> Airport Arrivals Board by IATA Code is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-16).

Returns a live arrivals board for a given airport, listing incoming flights with origin, airline, terminal, gate, baggage belt, and scheduled/revised arrival times.

## Facts

- Endpoint: GET https://api.x402node.dev/aviation/airport-arrivals
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/airport-arrivals-board-by-iata-code-ec5cd69c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-gic8tUVIf4nNY7afVDbk

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 airport-arrivals-board-by-iata-code-ec5cd69c
```

Example prompt: Can you pull up the live arrivals board for JFK airport and show me what flights are landing soon, including their gates and baggage belts?

## When to prefer this

Use this endpoint when you need real-time arrivals data for a specific airport identified by its IATA code, including gate, terminal, and baggage belt details — ideal for meeting-arrival coordination, flight status monitoring, or travel assistant workflows.

## Known failure modes

- Invalid or unknown IATA code returns an error or empty result
- Airport code parameter missing returns a 400-level error
- Temporary data unavailability for a specific airport returns empty or stale data
- Payment not processed (x402 payment required) returns a 402 Payment Required response

## How this service works

Live airport arrivals board by IATA code: incoming flights with origin, airline, terminal, gate, baggage belt, scheduled and revised arrival times. 机场到港航班板：到达航班的出发地、航司、登机口、行李转盘、时刻。空港到着便ボード。Tablero de llegadas. 공항 도착 항공편. Query: ?airport=JFK Accepts payment on Base or Solana — either network works.

## Output

A list of arriving flights at the specified airport, each with origin city/airport, airline name, flight number, terminal, gate, baggage belt number, scheduled arrival time, and revised/actual arrival time if available.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "airport"
     ],
     "properties": {
      "airport": {
       "type": "string",
       "description": "Airport IATA code e.g. JFK, LHR, PEK"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/airport-arrivals-board-by-iata-code-ec5cd69c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
