Today — AirLabs + AeroAPI + AeroDataBox (merged, best delay wins) · Historical — FlightAware AeroAPI
Query this tool programmatically via GET parameters. Returns the longest delayed departures as a JSON array.
GET /api/flights?airport={IATA/ICAO}&date={YYYY-MM-DD}&count={n}
| Param | Required | Default | Description |
|---|---|---|---|
| airport | Yes | — | IATA or ICAO airport code, e.g. HAN, SGN, LHR |
| date | No | today | Date in YYYY-MM-DD format. Defaults to today (real-time via AirLabs). Historical dates use AeroAPI. |
| count | No | 20 | Number of results to return (1–100) |
Example response:
[
{
"flight": "AIQ641",
"airline": "FD",
"destination_iata": "DMK",
"destination_name": "Don Muang Int'l (Old Bangkok Int'l)",
"scheduled": "2026-05-15T05:20:00Z",
"actual": "2026-05-15T05:45:00Z",
"delay_minutes": 25,
"status": "En Route / Delayed"
},
...
]