# Historical archive (1940-present) Open-Meteo Global

**Use case:** 

Extract Open-Meteo Global Weather Forecast data filtered by Historical archive (1940-present). Export structured results ready for analysis, lead generation,

## Input

```json
{
  "maxItems": 10,
  "mode": "historical",
  "locations": "52.52,13.41\n40.71,-74.01\n35.68,139.65",
  "startDate": "2024-01-01",
  "endDate": "2024-01-07",
  "granularity": "daily",
  "temperatureUnit": "celsius"
}
```

## Output

```json
{
  "timestamp": {
    "label": "Time",
    "format": "text"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "timezone": {
    "label": "Timezone",
    "format": "text"
  },
  "temperatureMax": {
    "label": "Max °",
    "format": "number"
  },
  "temperatureMin": {
    "label": "Min °",
    "format": "number"
  },
  "precipitationSum": {
    "label": "Precip (mm)",
    "format": "number"
  },
  "windSpeedMax": {
    "label": "Wind (km/h)",
    "format": "number"
  },
  "weatherCode": {
    "label": "WMO Code",
    "format": "number"
  },
  "sunrise": {
    "label": "Sunrise",
    "format": "text"
  },
  "sunset": {
    "label": "Sunset",
    "format": "text"
  }
}
```

## About this Actor

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