Data
Live airport operational status with weather-driven delay-risk verdict API
Current operational status for an airport (IATA or ICAO code) for travel agents, composed from LIVE keyless aviation weather: the latest METAR observation plus the TAF forecast from aviationweather.gov (NOAA Aviation Weather Center). It parses flight category (VFR / MVFR / IFR / LIFR) from ceiling and visibility, reads surface wind and gusts, scans the TAF for a deteriorating trend, and collapses it all into the read a travel agent actually needs: a 0-100 delay-risk score with a LOW / MODERATE / HIGH / SEVERE band, the specific drivers (low ceiling/visibility, gusty winds, worsening forecast), the parsed conditions, the forecast trend, and a plain-English summary. The value-add: turning raw METAR/TAF fields no LLM can reliably decode into an actionable 'will this airport cause delays right now?' verdict. Answers 'What is the operational status of JFK?', 'Is there a weather delay risk at LHR?', 'What is the flight category at KSFO?', 'Will weather delay flights at this airport today?'.
https://x402.hexl.dev/v1/data/airport-status{
"airport": "LHR"
}{
"icao": "EGLL",
"iata": "LHR",
"name": "LONDON/HEATHROW AIRPORT",
"flightCategory": "MVFR",
"delayRisk": {
"score": 52,
"band": "HIGH"
},
"conditions": {
"visibilitySm": 5,
"ceilingFtAgl": 2500,
"windDir": 200,
"windSpeedKt": 14,
"windGustKt": null,
"observedAt": "2026-06-04T15:20:00.000Z",
"rawMetar": "METAR EGLL 041520Z 20014KT 8000 BKN025 14/11 Q1009"
},
"forecast": {
"available": true,
"worstCategory": "IFR",
"deteriorating": true,
"maxGustKt": 24,
"rawTaf": "TAF EGLL 041425Z 0415/0518 20012KT 9999 BKN025 BECMG 0500/0503 18010KT 4000 BR BKN008"
},
"reasons": [
"Marginal VFR — some restriction, minor delay potential.",
"Forecast deteriorates to IFR later in the TAF window — conditions worsening."
],
"summary": "LHR (LONDON/HEATHROW AIRPORT): MVFR. Elevated delay risk from current conditions (delay risk 52/100, HIGH). Marginal VFR — some restriction, minor delay potential. Forecast trend: worsening to IFR.",
"disclaimer": "Weather-derived delay-risk heuristic from live METAR/TAF only. It does NOT include ATC ground-stops, NOTAMs, staffing, traffic-volume or carrier-specific delays. Not an official flight-operations source — verify with the operating carrier and the relevant ANSP before relying on it."
}{
"type": "object",
"required": [
"airport"
],
"properties": {
"airport": {
"type": "string",
"description": "Airport code: 4-letter ICAO (e.g. 'KJFK', 'EGLL') or 3-letter IATA (e.g. 'JFK', 'LHR'). ICAO is most reliable; major-hub IATA codes are mapped, other 3-letter codes are resolved with the US 'K'-prefix heuristic."
}
},
"examples": [
{
"airport": "KJFK"
},
{
"airport": "LHR"
},
{
"airport": "KSFO"
}
]
}{
"type": "object",
"additionalProperties": true
}