GET/v2/current

Current Weather

Returns current weather conditions for the specified location. Includes temperature, humidity, wind speed, UV index, and more.

Parameters

NameTypeRequiredDescriptionExample
latnumberRequiredLatitude of the location40.7128
lonnumberRequiredLongitude of the location-74.0060
unitsstringOptionalTemperature units (imperial or metric)metric
langstringOptionalResponse language codeen

Try It Out

GET/v2/current

Example Response

{
  "status": "success",
  "data": {
    "location": {
      "lat": 40.7128,
      "lon": -74.006,
      "city": "New York",
      "country": "US"
    },
    "current": {
      "temperature": 22.5,
      "feels_like": 21.8,
      "humidity": 65,
      "pressure": 1013.25,
      "wind_speed": 12.3,
      "wind_direction": 225,
      "uv_index": 6,
      "visibility": 10000,
      "conditions": "Partly Cloudy",
      "icon": "partly_cloudy_day"
    },
    "updated_at": "2024-01-15T14:30:00Z"
  }
}