Luchtmeetnet API
Overview
Luchtmeetnet API provides real-time and predicted air quality measurements from the official Dutch national air quality monitoring network (RIVM). It is completely free with no authentication required, covering pollutants like NO2, PM10, PM2.5, and ozone across hundreds of stations in the Netherlands. Developers can fetch station data, component measurements, and LKI (air quality index) values with simple GET requests.
Beginner Tip
No API key is needed — just browse the available stations first using the /stations endpoint, then use a station number to fetch current measurements. The API returns metric-based pollution data, so check the Luchtmeetnet docs for the list of supported component codes like "NO2" or "PM25".
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Luchtmeetnet",
"description": "Predicted and actual air quality components for The Netherlands (RIVM)",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
data List of station or measurement objects returned by the query data[].number Unique station identifier code used to reference the monitoring station in other endpoints data[].location Human-readable location name or description of the monitoring station data[].value Measured concentration value for the requested air quality component data[].timestamp_measured ISO 8601 timestamp indicating when the measurement was recorded pagination Pagination metadata including total record count and current page information Implementation Example
const url = "https://api-docs.luchtmeetnet.nl/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →CO2 Offset
⭐ Beginner's PickCO2 Offset API calculates and validates the carbon footprint of electricity consumption using the Sustainable Scope 2 framework.
Danish data service Energi
Danish data service Energi provides programmatic access to open energy data from energinet to society via REST API.
GrünstromIndex
⭐ Beginner's PickGrünstromIndex (Green Power Index) provides real-time and forecast data about the proportion of renewable energy in the German electricity grid.
National Grid ESO
National Grid ESO provides programmatic access to open data from great britain’s electricity system operator via REST API.
PM2.5 Open Data Portal
⭐ Beginner's PickPM2.5 Open Data Portal provides free access to low-cost PM2.5 (fine particulate matter) sensor data from the LASS community network across Asia, particularly Taiwan.