# Historical Weather Data for Berlin 2024

**Use case:** 

Access hourly weather data for Berlin from January to December 2024. Get detailed insights on temperature, precipitation, and more.

## Input

```json
{
  "mode": "historical",
  "locations": [
    "Berlin"
  ],
  "startDate": "2024-01-01",
  "endDate": "2024-12-31",
  "hourly": true,
  "daily": false,
  "forecastDays": 7,
  "temperatureUnit": "celsius",
  "windSpeedUnit": "kmh",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "dataType": {
    "label": "Data Type",
    "format": "string"
  },
  "time": {
    "label": "Time",
    "format": "string"
  },
  "temperature": {
    "label": "Temperature",
    "format": "number"
  },
  "temperatureMax": {
    "label": "Max Temperature",
    "format": "number"
  },
  "temperatureMin": {
    "label": "Min Temperature",
    "format": "number"
  },
  "precipitation": {
    "label": "Precipitation",
    "format": "number"
  },
  "windSpeed": {
    "label": "Wind Speed",
    "format": "number"
  },
  "humidity": {
    "label": "Humidity",
    "format": "number"
  },
  "weatherCode": {
    "label": "WMO Code",
    "format": "number"
  },
  "weatherDescription": {
    "label": "Conditions",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Open-Meteo Weather Scraper — Forecast, Historical & Geocoding](https://apify.com/logiover/open-meteo-weather-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/open-meteo-weather-scraper) to learn more, explore other use cases, and run it yourself.