Air Quality
AQI, pollen & health guidance
Real-time air quality and allergen data for any location worldwide. Get AQI (US and European), pollutant levels, UV index, and pollen counts. Includes multi-day forecasts and personalized health recommendations for sensitive groups.
Real-time air quality for any location. Returns US and European AQI, pollutant concentrations (PM2.5, PM10, ozone, NO2, SO2, CO), UV index, pollen counts for 6 species, and health advisories.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "air-quality",
"skill": "current_air_quality",
"input": {
"location": "London"
}
}' \
https://api.toolrouter.com/v1/tools/callMulti-day air quality forecast with daily min/max/avg for AQI, PM2.5, PM10, ozone, and NO2. Identifies dominant pollutant per day. Up to 7 days ahead for any global location.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "air-quality",
"skill": "air_quality_forecast",
"input": {
"location": "Delhi"
}
}' \
https://api.toolrouter.com/v1/tools/callPollen forecast for allergy sufferers covering 6 types: alder, birch, grass, mugwort, olive, ragweed. Daily concentrations with severity, active types, seasonal context, and allergy advice. Up to 7 days ahead.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "air-quality",
"skill": "pollen_forecast",
"input": {
"location": "London"
}
}' \
https://api.toolrouter.com/v1/tools/callHealth recommendations combining AQI, UV, and pollen into a risk score (0-10) with guidance for exercise, walking, and ventilation. Optionally specify sensitive groups (asthma, COPD, allergies, children, elderly) for targeted advice.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "air-quality",
"skill": "health_recommendations",
"input": {
"location": "Delhi"
}
}' \
https://api.toolrouter.com/v1/tools/callFind nearby air quality monitoring stations for a location. Returns station name, operator, measured parameters, distance, and measurement dates. Uses the OpenAQ global network with data from government agencies and research institutions worldwide.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "air-quality",
"skill": "monitoring_stations",
"input": {
"location": "London"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"air-quality","skill":"current_air_quality","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Can I check air quality for my city without coordinates?
Yes. `current_air_quality` accepts city names or lat/lon and returns AQI, pollutant levels, pollen counts, UV index, and advisories.
Can I see whether conditions will improve later this week?
`air_quality_forecast` gives up to 7 days of AQI and pollutant forecasts, and `pollen_forecast` adds pollen type breakdowns for allergy planning.
Can I get advice for asthma, allergies, or outdoor exercise?
`health_recommendations` combines AQI, UV, and pollen into a risk score with guidance for walking, exercise, and ventilation.
Can I find the nearest monitoring station?
`monitoring_stations` looks up nearby OpenAQ stations, including what they measure and how far away they are, where coverage exists.