Closures
Explicit runway and taxiway closures found in the latest ATIS.
Explicit runway and taxiway closures, parsed out of the latest available broadcast for an airport. An empty list means a current broadcast was available but named no closures — not that we couldn't check.
GET/v1/airports/{icao_code}/closures
Current runway and taxiway closuresGET /v1/airports/KJFK/closures
{
"icao_code":: "KJFK",
"data_as_of":: "2026-07-30T18:51:00Z",
"is_stale":: false,
"closures":: [
{
"resource_type":: "runway",
"resource_id":: "6f1a2e3d-9b7a-4e51-8b39-2e6e1c9f7a10",
"ident":: "04L/22R",
"status":: "closed",
"closure_type":: "full",
"observed_at":: "2026-07-30T18:51:00Z",
"confidence":: 0.9,
"description":: "RWY 04L/22R CLSD"
}
]
}resource_id matches the stable ID returned by the surfaces endpoint, so you can join a closure back to the exact runway or taxiway geometry it affects. is_stale flags when the underlying broadcast is older than expected, so you know to treat the result cautiously rather than as current.
This is advisory operational data, not an ATC clearance and not a complete substitute for official NOTAM and airport-operator sources.