← Geo & Weather

Station Pollen Reading

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.

Parameters

code required

Station code (e.g. PZH, PBE, PGE)

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/pollen/station/PZH
Pollen in Zürich
curl https://nordapi.ee/api/v1/pollen/station/PZH
Pollen in Geneva
curl https://nordapi.ee/api/v1/pollen/station/PGE
Pollen in Basel
curl https://nordapi.ee/api/v1/pollen/station/PBS

Live Response

{
  "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
}