BreezoMeter Pollen API
Overview
BreezoMeter Pollen API (now part of Google Maps Platform) provides daily pollen forecast data including pollen type, index values, and risk levels for a specific geographic location. An API key from Google Maps Platform is required to authenticate requests. It is valuable for building health apps, outdoor activity planners, or allergy alert systems.
Beginner Tip
Enable the Pollen API in your Google Cloud Console project and make sure billing is set up — the API has a free tier but requires a billing account. Use latitude and longitude coordinates (not city names) when querying pollen data.
Available Data
Example Response
{
"location": "Tokyo",
"temperature": {
"current": 22,
"feels_like": 24,
"min": 18,
"max": 26
},
"condition": "Partly Cloudy",
"humidity": 65,
"wind": {
"speed": 12,
"direction": "NE"
},
"forecast": [
{
"date": "2025-01-16",
"high": 25,
"low": 17,
"condition": "Sunny"
}
]
} Field Reference
dailyInfo Array of daily pollen forecast objects, one per requested day. dailyInfo[].date Date of the forecast with year, month, and day fields. dailyInfo[].pollenTypeInfo List of pollen types (e.g., GRASS, TREE, WEED) with index and risk level. pollenTypeInfo[].indexInfo.value Numeric pollen index value indicating concentration level. pollenTypeInfo[].indexInfo.category Risk category such as None, Very Low, Low, Medium, High, or Very High. pollenTypeInfo[].inSeason Whether this pollen type is currently in season for the location. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://docs.breezometer.com/api-documentation/pollen-api/v2/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
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
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Recipes Using BreezoMeter Pollen
Build something with this API. Each recipe includes step-by-step instructions and code outlines.
Similar APIs
View All →Carbon Interface
Carbon Interface API calculates estimated CO2 emissions for common activities such as electricity usage, flights, vehicle travel, and shipping.
Climatiq
Climatiq is an API for calculating carbon emissions and environmental footprint across a wide range of activities including travel, energy use, and shipping.
Cloverly
Cloverly provides programmatic access to api calculates the impact of common carbon-intensive activities in real time via REST API.
IQAir
⭐ Beginner's PickIQAir API provides real-time air quality index (AQI) data and weather conditions for cities and stations worldwide, powered by the IQAir sensor network.
OpenAQ
⭐ Beginner's PickOpenAQ is an open-source platform providing access to air quality data aggregated from thousands of government and research-grade monitoring stations worldwide.