Luchtmeetnet
Dutch air-quality readings and forecasts from RIVM stations
The Netherlands' national air-quality network exposes its measuring stations and pollutant readings over an open API. Page through stations, then fetch measured and forecast values for components like NO2, PM10 and ozone. Keyless JSON with wide-open CORS.
GET https://api.luchtmeetnet.nl/open_api/stations?page=1
{
"pagination": {
"current_page": 1,
"next_page": 2,
"last_page": 5
},
"data": [
{
"number": "NL49565",
"location": "Oude Meer-Aalsmeerderdijk"
}
]
}curl "https://api.luchtmeetnet.nl/open_api/stations?page=1"const res = await fetch("https://api.luchtmeetnet.nl/open_api/stations?page=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.luchtmeetnet.nl/open_api/stations?page=1")
print(res.json())/stations?page=1PROBEDDutch air-quality readings and forecasts from RIVM stations
/stations?limit=5Stations — documented GET route.
/stationsStations — documented GET route.
/API root or index route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Luchtmeetnet: common questions
Is Luchtmeetnet free to use?
Yes — Luchtmeetnet is a free weather API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Luchtmeetnet need an API key?
No — Luchtmeetnet needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Luchtmeetnet from the browser?
Yes — Luchtmeetnet returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Luchtmeetnet up right now?
As of our last scheduled check, Luchtmeetnet is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.