← 地理与天气

站点花粉读数

GET /pollen/station/:code

获取特定MeteoSwiss监测站的最新花粉读数。返回所有7种花粉类型(桤木、桦木、榛木、山毛榉、白蜡木、橡木、草本植物)的浓度(颗粒/立方米)及站点元数据。使用/pollen/stations查找有效站点代码。

参数

code 必填

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

请求示例

基本用法
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

实时响应

{
  "data": {
    "altitude_m": 559,
    "canton": "ZH",
    "date": "2026-05-12",
    "latitude": 47.38,
    "longitude": 8.57,
    "pollen": {
      "alder": 0,
      "ash": 0,
      "beech": 0,
      "birch": 5,
      "grasses": 6,
      "hazel": 0,
      "oak": 0
    },
    "station": "PZH",
    "station_name": "Zürich",
    "timestamp": "2026-05-12T23:00:00Z"
  },
  "source": "MeteoSwiss",
  "success": true
}