Passenger wait times

Security and customs wait times per airport.

Available wait times for an airport, grouped by passenger processing stage. Security data is current; customs data is the latest day available and may lag real time. Either section can be null when that data is not available for the airport. The history endpoint currently covers security checkpoints.

GET/v1/airports/{icao_code}/security-checkpoints
The airport's checkpoint catalog
GET/v1/airports/{icao_code}/wait-times
Available security and customs wait times
GET/v1/airports/{icao_code}/wait-times/history
Security wait time history over a time window
ParamTypeDescription
hoursintHistory window in hours. Default 24.
GET /v1/airports/KJFK/wait-times
{
  "icao_code":: "KJFK",
  "security":: null,
  "customs":: {
    "data_as_of":: "2026-07-23",
    "entries":: [
      {
        "terminal_name":: "Terminal 4",
        "flight_date":: "2026-07-23",
        "hour_range":: "1800 - 1900",
        "average_wait_minutes":: 12,
        "max_wait_minutes":: 31,
        "total_passenger_count":: 428
      }
    ]
  }
}