# Airport Departures Board by IATA Code

> Airport Departures 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-14).

Returns the live departures board for an airport by IATA code, listing upcoming flights with destination, airline, terminal, gate, and scheduled/revised times.

## Facts

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

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-departures-board-by-iata-code-1169fee0
```

Example prompt: Can you pull up the live departures board for JFK airport and show me what flights are leaving in the next few hours, including their destinations, airlines, terminals, and gates?

## When to prefer this

Use this endpoint when you need real-time, structured departure flight data for a specific airport and have the IATA code available. Ideal for travel assistants, itinerary planners, or airport gate monitoring. Prefer this over general flight search APIs when you want a full board view of all upcoming departures from one airport rather than tracking a specific flight number.

## Known failure modes

- Invalid or unknown IATA code returns an error or empty result
- Airport code parameter missing returns a 400 bad request
- Data temporarily unavailable for a specific airport returns an error
- Payment not completed (x402 protocol) returns a 402 Payment Required response
- Network timeout if live flight data feed is slow

## How this service works

Live airport departures board by IATA code: upcoming departing flights with destination, airline, terminal, gate, scheduled and revised times. 机场离港航班板：即将起飞航班的目的地、航司、登机口、时刻。空港出発便ボード。Tablero de salidas del aeropuerto. 공항 출발 항공편. Query: ?airport=JFK Accepts payment on Base or Solana — either network works.

## Output

A list of upcoming departing flights from the specified airport, each with destination, airline name, terminal, gate, scheduled departure time, and any revised/updated departure time — mirroring a real airport departures display board.

## 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-departures-board-by-iata-code-1169fee0/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)
