# 7-Day Weather Forecast by City, Daily Highs & Lows

**Use case:** 

One row per day for the week ahead: highs, lows, wind, and precipitation from Open-Meteo. Forecast mode lets you set how many days to pull.

## Input

```json
{
  "mode": "forecast",
  "places": [
    "New York"
  ],
  "forecastDays": 7,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "place": {
    "label": "Place",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "temperature": {
    "label": "Temp (now)",
    "format": "number"
  },
  "tempMax": {
    "label": "Temp max",
    "format": "number"
  },
  "tempMin": {
    "label": "Temp min",
    "format": "number"
  },
  "weather": {
    "label": "Weather",
    "format": "text"
  }
}
```

## About this Actor

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