Description

Climate Forte Docs

History

Retrieve recent historical weather data.

Retrieve historical weather data for a specific location. Supports hourly, minutely, and daily timelines with detailed weather metrics.

GET
weather/history

Query Parameters

latstring

Latitute coordinate (decimal).

lonstring

Longitute coordinate (decimal).

startTime?string

Start time for historical data.

Formatdate-time
endTime?string

End time for historical data.

Formatdate-time
fields?string

Comma-separated list of weather fields to include.

apikeystring

Your API key for authentication.

Response Body

application/json

curl -X GET "https://api.climateforte.com/v1/weather/history?lat=string&lon=string&apikey=string"
{
  "timelines": {
    "hourly": [
      {
        "time": "2025-01-09T10:00:00Z",
        "values": {
          "temperature": 3.2,
          "temperatureApparent": 2,
          "dewPoint": 0,
          "windSpeed": 4.3,
          "windGust": 6,
          "windDirection": 150,
          "humidity": 70,
          "pressureSurfaceLevel": 1015.3,
          "precipitationIntensity": 0,
          "precipitationProbability": 15,
          "cloudCover": 30,
          "visibility": 10,
          "weatherCode": 1000,
          "uvIndex": 0,
          "ozone": 298,
          "soilMoisture": 0.14,
          "snowAccumulation": 0,
          "lightningProbability": 0
        }
      }
    ]
  }
}