# Current Weather for Multiple Cities, No API Key

**Use case:** 

Current temperature, humidity, and wind for a list of cities from Open-Meteo, no API key required. City-level weather data for dashboards and apps.

## Input

```json
{
  "mode": "current",
  "places": [
    "Berlin",
    "London",
    "Tokyo"
  ],
  "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.