For developers
The same weather pipeline, as a REST API.
Decoded METAR, TAF, SIGMET and historic archive, served from a global snapshot refreshed every 5 minutes. Stable endpoints, low global edge latency, indie-friendly pricing. Free plan to try it.
METAR · TAF · SIGMET
Historic archive
Free plan · 300 calls/day
curl · api.developer.avioweather.app
# GET /v1/metar/LIRF — raw + decoded
$ curl https://api.developer.avioweather.app/v1/metar/LIRF \
-H "X-API-Key: ak_live_v2.••••"
{
"icao": "LIRF", "name": "Roma Fiumicino",
"raw": "LIRF 291420Z 22010KT 9999 FEW035 21/11 Q1019",
"flight_category": "VFR",
"wind": { "direction_deg":220, "speed_kt":10 },
"visibility": { "meters":9999 },
"temperature_c":21, "altimeter_hpa":1019
}