# 14-Day Weather Forecasts for Southeast Asia Cities

**Use case:** 

Access detailed 14-day weather forecasts for Bangkok, Singapore, Kuala Lumpur, Ho Chi Minh City, and Jakarta, including hourly and daily data.

## Input

```json
{
  "mode": "forecast",
  "locations": [
    "Bangkok",
    "Singapore",
    "Kuala Lumpur",
    "Ho Chi Minh City",
    "Jakarta"
  ],
  "startDate": "",
  "endDate": "",
  "hourly": true,
  "daily": true,
  "forecastDays": 14,
  "temperatureUnit": "celsius",
  "windSpeedUnit": "kmh",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "timezone": {
    "label": "Timezone",
    "format": "string"
  },
  "dataType": {
    "label": "Data Type",
    "format": "string"
  },
  "time": {
    "label": "Time",
    "format": "string"
  },
  "temperature": {
    "label": "Temperature",
    "format": "number"
  },
  "temperatureMax": {
    "label": "Max Temperature",
    "format": "number"
  },
  "temperatureMin": {
    "label": "Min Temperature",
    "format": "number"
  },
  "precipitation": {
    "label": "Precipitation",
    "format": "number"
  },
  "windSpeed": {
    "label": "Wind Speed",
    "format": "number"
  },
  "humidity": {
    "label": "Humidity",
    "format": "number"
  },
  "weatherCode": {
    "label": "WMO Code",
    "format": "number"
  },
  "weatherDescription": {
    "label": "Conditions",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  }
}
```

## About this Actor

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