GET /pollen/station/:code
Get the latest pollen reading for a specific MeteoSwiss monitoring station. Returns concentrations in particles/m³ for all 7 pollen types (alder, birch, hazel, beech, ash, oak, grasses) along with station metadata. Use /pollen/stations to find valid station codes.
code
required
Station code (e.g. PZH, PBE, PGE)
| Name | Required | Default | Description |
|---|---|---|---|
code |
Yes | - | Station code (e.g. PZH, PBE, PGE) |
curl https://nordapi.ee/api/v1/pollen/station/PZH
curl https://nordapi.ee/api/v1/pollen/station/PZH
curl https://nordapi.ee/api/v1/pollen/station/PGE
curl https://nordapi.ee/api/v1/pollen/station/PBS
{
"data": {
"altitude_m": 559,
"canton": "ZH",
"date": "2026-05-09",
"latitude": 47.38,
"longitude": 8.57,
"pollen": {
"alder": 0,
"ash": 0,
"beech": 18,
"birch": 29,
"grasses": 63,
"hazel": 0,
"oak": 0
},
"station": "PZH",
"station_name": "Zürich",
"timestamp": "2026-05-09T23:00:00Z"
},
"source": "MeteoSwiss",
"success": true
}