# 16-Day Weather Forecast for Major Cities — Open-Meteo

**Use case:** 

Daily 16-day forecast for New York, London, Paris, Tokyo, Dubai and Sydney: max and min temperature, precipitation sum and probability, max wind speed and gusts, UV index, sunrise, sunset and a plain-text weather description. For travel, events, retail and logistics planning. Replace the cities (names or lat,lon), switch to imperial units, or schedule it every morning.

## Input

```json
{
  "locations": [
    "New York, US",
    "London, GB",
    "Paris, FR",
    "Tokyo, JP",
    "Dubai, AE",
    "Sydney, AU"
  ],
  "mode": "daily",
  "days": 16,
  "units": "metric",
  "includeEnsembleMembers": false,
  "timezone": "auto",
  "temperatureUnit": "",
  "windSpeedUnit": "",
  "precipitationUnit": "",
  "geocodeLanguage": "en",
  "cellSelection": "land",
  "airQualityDomain": "auto",
  "layout": "rows",
  "maxItems": 100
}
```

## 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`).
