# Current Weather for Multiple Cities — Open-Meteo

**Use case:** 

Live conditions for New York, London, Tokyo and Dubai from Open-Meteo: temperature, feels-like, humidity, precipitation, cloud cover, pressure, wind speed, direction and gusts, plus a plain-text weather description. One row per city, for dashboards, travel apps and agents. Swap in any city name or lat,lon pair, or switch to imperial units.

## Input

```json
{
  "locations": [
    "New York, US",
    "London, GB",
    "Tokyo, JP",
    "Dubai, AE"
  ],
  "mode": "current",
  "days": 7,
  "units": "metric",
  "includeEnsembleMembers": false,
  "timezone": "auto",
  "temperatureUnit": "",
  "windSpeedUnit": "",
  "precipitationUnit": "",
  "geocodeLanguage": "en",
  "cellSelection": "land",
  "airQualityDomain": "auto",
  "layout": "rows",
  "maxItems": 20000
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "time": {
    "label": "Time",
    "format": "text"
  },
  "temperature_2m_max": {
    "label": "T max",
    "format": "number"
  },
  "temperature_2m_min": {
    "label": "T min",
    "format": "number"
  },
  "temperature_2m": {
    "label": "T",
    "format": "number"
  },
  "precipitation_sum": {
    "label": "Precip sum",
    "format": "number"
  },
  "precipitation": {
    "label": "Precip",
    "format": "number"
  },
  "wind_speed_10m_max": {
    "label": "Wind max",
    "format": "number"
  },
  "wind_speed_10m": {
    "label": "Wind",
    "format": "number"
  },
  "weather": {
    "label": "Weather",
    "format": "text"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/yadroo/open-meteo-weather.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
