GET /pollen/station/:code/history
Historical pollen data for a station with date range. Up to 5 years of hourly sensor data. Supports daily aggregation for longer ranges. Useful for seasonal pattern analysis, year-over-year allergy trend comparisons, and research into pollen season timing shifts.
code
required
Station code (e.g. PZH, PBE)
start_date
optional
Start date YYYY-MM-DD (default: 7 days ago)
end_date
optional
End date YYYY-MM-DD (default: today)
resolution
optional
hourly or daily (default: hourly)
| Name | Required | Default | Description |
|---|---|---|---|
code |
Yes | - | Station code (e.g. PZH, PBE) |
start_date |
No | - | Start date YYYY-MM-DD (default: 7 days ago) |
end_date |
No | - | End date YYYY-MM-DD (default: today) |
resolution |
No | - | hourly or daily (default: hourly) |
curl "https://nordapi.ee/api/v1/pollen/station/PZH/history?start_date=2026-04-01&end_date=2026-04-10"
curl "https://nordapi.ee/api/v1/pollen/station/PZH/history?start_date=2026-04-03&end_date=2026-04-10"
curl "https://nordapi.ee/api/v1/pollen/station/PBE/history?start_date=2026-04-01&end_date=2026-04-30&resolution=daily"
curl "https://nordapi.ee/api/v1/pollen/station/PZH/history?start_date=2025-03-01&end_date=2025-05-31&resolution=daily"
{
"count": 0,
"data": [],
"end_date": "2026-04-10",
"resolution": "hourly",
"source": "MeteoSwiss",
"start_date": "2026-04-01",
"station": "PZH",
"success": true
}