# Open-Meteo current weather by coordinates

**Use case:** 

Check current weather for exact latitude and longitude pairs using Open-Meteo, including temperature, wind, precipitation, and humidity.

## Input

```json
{
  "locations": [
    "48.8566,2.3522",
    "35.6762,139.6503",
    "40.7128,-74.0060"
  ],
  "forecastDays": 0,
  "includeHourly": false,
  "temperatureUnit": "celsius",
  "windSpeedUnit": "ms"
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "temperature": {
    "label": "Temperature",
    "format": "number"
  },
  "weatherDescription": {
    "label": "Weather",
    "format": "text"
  },
  "humidity": {
    "label": "Humidity %",
    "format": "number"
  },
  "windSpeed": {
    "label": "Wind Speed",
    "format": "number"
  },
  "precipitation": {
    "label": "Precipitation",
    "format": "number"
  },
  "uvIndex": {
    "label": "UV Index",
    "format": "number"
  }
}
```

## About this Actor

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