Latest METAR observation, decoded, for any ICAO airport worldwide (NOAA AviationWeather
Latest METAR observation, decoded, for any ICAO airport worldwide (NOAA AviationWeather.gov): wind direction/speed/gust (kt), temperature/dewpoint (C), visibility, QNH altimeter (hPa), flight category (VFR/MVFR/IFR/LIFR) plus the raw METAR string. Query: ?ids=KJFK,LFPG (1-10 comma-separated ICAO codes). Observations refresh every 30-60 min; 5 min cache.
2000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"ids": "KJFK,LFPG"
},
"type": "http"
},
"output": {
"example": {
"count": 1,
"metars": [
{
"altimeter_hpa": 1016,
"dewpoint_c": 16,
"flight_category": "VFR",
"icao": "LFPG",
"lat": 49.015,
"lon": 2.534,
"name": "Paris/De Gaulle Arpt, ID, FR",
"observed_utc": "2026-07-14T05:30:00Z",
"raw": "METAR LFPG 140530Z 01010KT 350V110 CAVOK 20/16 Q1016 NOSIG",
"temp_c": 20,
"visibility": "6+",
"wind_dir_deg": 10,
"wind_gust_kt": null,
"wind_speed_kt": 10
}
],
"source": "NOAA AviationWeather.gov data API (US Government, public domain)"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"ids": {
"description": "1-10 comma-separated ICAO station codes, e.g. KJFK,LFPG,EGLL",
"type": "string"
}
},
"required": [
"ids"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/aviation/metar" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/aviation/metar");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/aviation/metar")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3954.json, and this resource appears in /discovery/resources and /discovery/search.