Get real-time air quality data including AQI, PM2.5, PM10, ozone, and other pollutant levels for any location worldwide.
{
"status": "ok",
"error": null,
"data": {
"pm2_5": 16.75,
"pm10": 18.85,
"carbonMonoxide": 387.85,
"ozone": 9,
"nitrogenDioxide": 38.55,
"sulfurdioxide": 5.95,
"usEpaIndex": 2,
"gbDefraIndex": 2,
"recommendation": "The air quality in San Francisco is good. It is safe to go outside.",
"city": "San Francisco"
}
}






Get real-time air quality data including AQI, PM2.5, PM10, ozone, and other pollutant levels for any location worldwide.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/airquality?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ pm2_5, pm10, carbonMonoxide, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseIntegrate air quality data to warn users when conditions are unhealthy and suggest indoor alternatives.
Monitor outdoor AQI and automatically trigger air purifiers or switch HVAC to recirculation mode when pollution is high.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/airquality?city=San%20Francisco", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog