← Geo & Weather

City Weather History

GET /weather/history/:city

Hourly weather snapshots for a supported city, stored continuously by our own workers from the top of every hour. Returns temperature, apparent temperature, humidity, precipitation, wind speed/direction, weather code, and cloud cover. Filter with ?start and ?end (ISO 8601 or YYYY-MM-DD). Useful for building long-running climate dashboards, comparing conditions across cities over time, and analyzing hourly weather patterns without hitting upstream archive APIs.

See it visualized

Parameters

city required

City name (see /weather/cities)

start optional

Start datetime (ISO 8601 or YYYY-MM-DD)

end optional

End datetime (ISO 8601 or YYYY-MM-DD)

limit optional default: 500

Max rows (cap 10000)

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/weather/history/tallinn?limit=24"
Last 24 hours for Tallinn
curl "https://nordapi.ee/api/v1/weather/history/tallinn?limit=24"
Oslo weather for a date range
curl "https://nordapi.ee/api/v1/weather/history/oslo?start=2026-04-01&end=2026-04-15"
Full stored history for Tokyo
curl "https://nordapi.ee/api/v1/weather/history/tokyo?limit=10000"

Live Response

{
  "city": "tallinn",
  "count": 5,
  "data": [
    {
      "apparent_temperature_c": 17.2,
      "cloud_cover_pct": 100.0,
      "observed_at": "2026-07-05T13:00:00Z",
      "precipitation_mm": 0.5,
      "relative_humidity": 90.0,
      "temperature_c": 17.5,
      "weather_code": 61,
      "wind_direction_deg": 348.0,
      "wind_speed_kmh": 15.5
    },
    {
      "apparent_temperature_c": 16.8,
      "cloud_cover_pct": 100.0,
      "observed_at": "2026-07-05T14:00:00Z",
      "precipitation_mm": 0.2,
      "relative_humidity": 88.0,
      "temperature_c": 17.1,
      "weather_code": 53,
      "wind_direction_deg": 347.0,
      "wind_speed_kmh": 14.0
    },
    {
      "apparent_temperature_c": 17.3,
      "cloud_cover_pct": 100.0,
      "observed_at": "2026-07-05T15:00:00Z",
      "precipitation_mm": 0.1,
      "relative_humidity": 87.0,
      "temperature_c": 17.5,
      "weather_code": 51,
      "wind_direction_deg": 326.0,
      "wind_speed_kmh": 13.7
    },
    {
      "apparent_temperature_c": 18.1,
      "cloud_cover_pct": 98.0,
      "observed_at": "2026-07-05T16:00:00Z",
      "precipitation_mm": 0.0,
      "relative_humidity": 82.0,
      "temperature_c": 18.0,
      "weather_code": 3,
      "wind_direction_deg": 314.0,
      "wind_speed_kmh": 9.7
    },
    {
      "apparent_temperature_c": 18.0,
      "cloud_cover_pct": 97.0,
      "observed_at": "2026-07-05T17:00:00Z",
      "precipitation_mm": 0.0,
      "relative_humidity": 81.0,
      "temperature_c": 18.0,
      "weather_code": 3,
      "wind_direction_deg": 313.0,
      "wind_speed_kmh": 10.4
    }
  ],
  "success": true
}