Global Weather API.

Real-time weather, forecast & historical data for any location.

FREE to use
No credit card required
Columbus
LIVE
Ohio, US
Last Updated: 11:30 AM
Friday, May 30
60°F
Cloudy
3 mph
Wind Speed
1%
Humidity
983 mb
Pressure
FRI
68°F
SAT
69°F
SUN
70°F
MON
79°F
Columbus
LIVE
Ohio, US
60°F
Cloudy
3 mph
Wind Speed
1%
Humidity
983 mb
Pressure
FRI
68°F
SAT
69°F
SUN
70°F
MON
79°F

Easy to Use

  • Setup in minutes
  • Simple REST API
  • Extensive documentation
  • Simple transparent pricing

Weather Conditions

  • Real-time conditions
  • Hyper-local forecasting
  • 10 years historical data
  • Severe weather alerts

Advanced Data

  • Worldwide coverage
  • Proprietary weather model
  • Backed by a wide range of data sources

Weather data
with just a few lines of code

Sign up for a free account and start accessing global weather data. Get current conditions, forecasts, and historical data in minutes. When you're ready to scale, upgrade to a pay-as-you-go plan.

# Install the requests library
import requests

# Your API key from dashboard
api_key = os.environ['WEATHER_API_KEY']

# Make API request
response = requests.get(
    'https://api.weatherxu.api/v1/weather',
    params={
        'lat': '34.0522',
        'lon': '-118.2437',
        'api_key': api_key
    }
)

data = response.json()['data']
current = data['currently']

print(f"Temperature: {current['temperature']}°C")
print(f"Feels like: {current['apparentTemperature']}°C")
print(f"Humidity: {current['humidity']}%")
print(f"Wind speed: {current['windSpeed']} m/s")
Simple REST API

Access weather data easily with our RESTful API. Use any programming language or HTTP client of your choice.

Global Coverage

Get accurate weather data for any location worldwide. Real-time updates and historical data at your fingertips.

Reliable Uptime

Built on robust infrastructure to ensure reliable access to weather data when your applications need it most.

WeatherXu API Response for Columbus

Real-time weather data in clean, structured JSON format

GET /v1/weather
{
  "dt": 1748604644,
  "latitude": 39.9625,
  "longitude": -83.0061,
  "timezone": "America/New_York",
  "timezone_abbreviation": "EDT",
  "timezone_offset": -14400,
  "units": "imperial",
  "alerts": [

  ],
  "currently": {
    "apparentTemperature": 59.8,
    "cloudCover": 0.91,
    "dewPoint": 51.85,
    "humidity": 0.85,
    "icon": "cloudy",
    "precipIntensity": 0,
    "pressure": 983,
    "temperature": 60.1,
    "uvIndex": 0,
    "visibility": 32808,
    "windDirection": 321,
    "windGust": 5.95,
    "windSpeed": 3.14
  },
  "hourly": {
    "data": [
      {
        "apparentTemperature": 60.24,
        "cloudCover": 0.91,
        "dewPoint": 52.34,
        "forecastStart": 1748606400,
        "humidity": 0.85,
        "icon": "cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 982.8,
        "temperature": 60.5,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 318,
        "windGust": 5.1,
        "windSpeed": 3.52
      },
      {
        "apparentTemperature": 61.89,
        "cloudCover": 1,
        "dewPoint": 48.85,
        "forecastStart": 1748610000,
        "humidity": 0.81,
        "icon": "cloudy",
        "precipIntensity": 0.001,
        "precipProbability": 0,
        "pressure": 981.8,
        "temperature": 62.17,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 356,
        "windGust": 6.94,
        "windSpeed": 4.14
      },
      {
        "apparentTemperature": 62.52,
        "cloudCover": 0.94,
        "dewPoint": 48.77,
        "forecastStart": 1748613600,
        "humidity": 0.78,
        "icon": "light_rain",
        "precipIntensity": 0.0072,
        "precipProbability": 0,
        "pressure": 981.3,
        "temperature": 62.87,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 63,
        "windGust": 3.11,
        "windSpeed": 0.66
      },
      {
        "apparentTemperature": 62.34,
        "cloudCover": 1,
        "dewPoint": 54.93,
        "forecastStart": 1748617200,
        "humidity": 0.75,
        "icon": "cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 980.7,
        "temperature": 62.83,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 20,
        "windGust": 9.8,
        "windSpeed": 4.29
      },
      {
        "apparentTemperature": 63.53,
        "cloudCover": 1,
        "dewPoint": 54.59,
        "forecastStart": 1748620800,
        "humidity": 0.72,
        "icon": "light_rain",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 981,
        "temperature": 64.04,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 33,
        "windGust": 8.72,
        "windSpeed": 3.3
      },
      {
        "apparentTemperature": 64.07,
        "cloudCover": 1,
        "dewPoint": 54.52,
        "forecastStart": 1748624400,
        "humidity": 0.7,
        "icon": "light_rain",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "pressure": 979.6,
        "temperature": 64.62,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 8,
        "windGust": 12.79,
        "windSpeed": 5.02
      },
      {
        "apparentTemperature": 65.63,
        "cloudCover": 1,
        "dewPoint": 55.02,
        "forecastStart": 1748628000,
        "humidity": 0.67,
        "icon": "light_rain",
        "precipIntensity": 0.07,
        "precipProbability": 0,
        "pressure": 979.2,
        "temperature": 66.16,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 343,
        "windGust": 12.1,
        "windSpeed": 6.5
      },
      {
        "apparentTemperature": 65.69,
        "cloudCover": 1,
        "dewPoint": 54.79,
        "forecastStart": 1748631600,
        "humidity": 0.65,
        "icon": "cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 978.7,
        "temperature": 66.31,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 302,
        "windGust": 14.56,
        "windSpeed": 4.96
      },
      {
        "apparentTemperature": 66.3,
        "cloudCover": 1,
        "dewPoint": 54.46,
        "forecastStart": 1748635200,
        "humidity": 0.64,
        "icon": "light_rain",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "pressure": 978.5,
        "temperature": 66.9,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 314,
        "windGust": 10.62,
        "windSpeed": 5.73
      },
      {
        "apparentTemperature": 67.08,
        "cloudCover": 1,
        "dewPoint": 53.87,
        "forecastStart": 1748638800,
        "humidity": 0.63,
        "icon": "light_rain",
        "precipIntensity": 0.13,
        "precipProbability": 0,
        "pressure": 978.6,
        "temperature": 67.66,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 202,
        "windGust": 8.45,
        "windSpeed": 2.99
      },
      {
        "apparentTemperature": 67.24,
        "cloudCover": 1,
        "dewPoint": 54.73,
        "forecastStart": 1748642400,
        "humidity": 0.63,
        "icon": "light_rain",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "pressure": 978,
        "temperature": 67.8,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 152,
        "windGust": 6.92,
        "windSpeed": 5.71
      },
      {
        "apparentTemperature": 66.49,
        "cloudCover": 1,
        "dewPoint": 55.17,
        "forecastStart": 1748646000,
        "humidity": 0.66,
        "icon": "cloudy",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 977.3,
        "temperature": 66.99,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 184,
        "windGust": 10.69,
        "windSpeed": 7.43
      },
      {
        "apparentTemperature": 65.39,
        "cloudCover": 0,
        "dewPoint": 55.38,
        "forecastStart": 1748649600,
        "humidity": 0.69,
        "icon": "clear",
        "precipIntensity": 0.18,
        "precipProbability": 0,
        "pressure": 977.28,
        "temperature": 65.86,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 284,
        "windGust": 18.12,
        "windSpeed": 8.89
      },
      {
        "apparentTemperature": 62.92,
        "cloudCover": 0,
        "dewPoint": 55.67,
        "forecastStart": 1748653200,
        "humidity": 0.76,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 977.53,
        "temperature": 63.32,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 282,
        "windGust": 22.82,
        "windSpeed": 8.54
      },
      {
        "apparentTemperature": 60.98,
        "cloudCover": 0,
        "dewPoint": 55.6,
        "forecastStart": 1748656800,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 977.81,
        "temperature": 61.34,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 268,
        "windGust": 19.46,
        "windSpeed": 5.95
      },
      {
        "apparentTemperature": 59.72,
        "cloudCover": 0,
        "dewPoint": 54.95,
        "forecastStart": 1748660400,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 977.66,
        "temperature": 60.06,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 247,
        "windGust": 22.82,
        "windSpeed": 6.21
      },
      {
        "apparentTemperature": 59.06,
        "cloudCover": 0,
        "dewPoint": 54.7,
        "forecastStart": 1748664000,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 977.17,
        "temperature": 59.47,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 237,
        "windGust": 19.46,
        "windSpeed": 6.62
      },
      {
        "apparentTemperature": 58.95,
        "cloudCover": 0,
        "dewPoint": 54.84,
        "forecastStart": 1748667600,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 976.7,
        "temperature": 59.32,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 254,
        "windGust": 19.91,
        "windSpeed": 7.37
      },
      {
        "apparentTemperature": 58.89,
        "cloudCover": 0,
        "dewPoint": 54.81,
        "forecastStart": 1748671200,
        "humidity": 0.87,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "pressure": 976.24,
        "temperature": 59.18,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 270,
        "windGust": 18.57,
        "windSpeed": 5.86
      },
      {
        "apparentTemperature": 57.88,
        "cloudCover": 0,
        "dewPoint": 55.15,
        "forecastStart": 1748674800,
        "humidity": 0.88,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 975.89,
        "temperature": 58.23,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 266,
        "windGust": 26.17,
        "windSpeed": 7.36
      },
      {
        "apparentTemperature": 58.23,
        "cloudCover": 0,
        "dewPoint": 55.08,
        "forecastStart": 1748678400,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 975.51,
        "temperature": 58.5,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 291,
        "windGust": 24.38,
        "windSpeed": 9.4
      },
      {
        "apparentTemperature": 56.94,
        "cloudCover": 0,
        "dewPoint": 53.82,
        "forecastStart": 1748682000,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 975.63,
        "temperature": 57.33,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 296,
        "windGust": 22.15,
        "windSpeed": 9.69
      },
      {
        "apparentTemperature": 56.17,
        "cloudCover": 0,
        "dewPoint": 53.53,
        "forecastStart": 1748685600,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 975.86,
        "temperature": 56.62,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 294,
        "windGust": 20.8,
        "windSpeed": 9.72
      },
      {
        "apparentTemperature": 55.32,
        "cloudCover": 0,
        "dewPoint": 52.7,
        "forecastStart": 1748689200,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 976.5,
        "temperature": 55.85,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 289,
        "windGust": 19.91,
        "windSpeed": 9.59
      },
      {
        "apparentTemperature": 56.07,
        "cloudCover": 0,
        "dewPoint": 52.29,
        "forecastStart": 1748692800,
        "humidity": 0.84,
        "icon": "light_rain",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "pressure": 976.62,
        "temperature": 56.75,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 298,
        "windGust": 23.94,
        "windSpeed": 10.18
      },
      {
        "apparentTemperature": 61.75,
        "cloudCover": 0,
        "dewPoint": 50.52,
        "forecastStart": 1748703600,
        "humidity": 0.64,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 62.76,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 66.82,
        "cloudCover": 0,
        "dewPoint": 47.21,
        "forecastStart": 1748714400,
        "humidity": 0.48,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.05,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 67.11,
        "cloudCover": 0,
        "dewPoint": 44.15,
        "forecastStart": 1748725200,
        "humidity": 0.42,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.58,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 63.22,
        "cloudCover": 0,
        "dewPoint": 42.75,
        "forecastStart": 1748736000,
        "humidity": 0.44,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 64.96,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 54.6,
        "cloudCover": 0,
        "dewPoint": 43.14,
        "forecastStart": 1748746800,
        "humidity": 0.62,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 56.35,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 49.58,
        "cloudCover": 0,
        "dewPoint": 42.91,
        "forecastStart": 1748757600,
        "humidity": 0.74,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 51.28,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "cloudCover": 0,
        "dewPoint": 41.05,
        "forecastStart": 1748768400,
        "humidity": 0.76,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 48.33,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 49.08,
        "cloudCover": 0,
        "dewPoint": 41.76,
        "forecastStart": 1748779200,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 50.99,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 60.21,
        "cloudCover": 0,
        "dewPoint": 41.54,
        "forecastStart": 1748790000,
        "humidity": 0.47,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 62.1,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 66.37,
        "cloudCover": 0,
        "dewPoint": 41.36,
        "forecastStart": 1748800800,
        "humidity": 0.38,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.07,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 68.8,
        "cloudCover": 0,
        "dewPoint": 41.59,
        "forecastStart": 1748811600,
        "humidity": 0.35,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 70.41,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 65.95,
        "cloudCover": 0,
        "dewPoint": 43.81,
        "forecastStart": 1748822400,
        "humidity": 0.43,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 67.48,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 57.11,
        "cloudCover": 0,
        "dewPoint": 45.5,
        "forecastStart": 1748833200,
        "humidity": 0.61,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 58.68,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 52.53,
        "cloudCover": 0,
        "dewPoint": 45.75,
        "forecastStart": 1748844000,
        "humidity": 0.73,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 54,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 50.66,
        "cloudCover": 0,
        "dewPoint": 44.98,
        "forecastStart": 1748854800,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 52.09,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 53.67,
        "cloudCover": 0,
        "dewPoint": 47.07,
        "forecastStart": 1748865600,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 54.95,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 66.36,
        "cloudCover": 0,
        "dewPoint": 49.77,
        "forecastStart": 1748876400,
        "humidity": 0.53,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 67.42,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 75.46,
        "cloudCover": 0,
        "dewPoint": 50.59,
        "forecastStart": 1748887200,
        "humidity": 0.41,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 76.21,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 79.35,
        "cloudCover": 0,
        "dewPoint": 52.09,
        "forecastStart": 1748898000,
        "humidity": 0.39,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 79.21,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 74.22,
        "cloudCover": 0,
        "dewPoint": 54.75,
        "forecastStart": 1748908800,
        "humidity": 0.5,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 74.7,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 66.56,
        "cloudCover": 0,
        "dewPoint": 55.02,
        "forecastStart": 1748919600,
        "humidity": 0.65,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 67.1,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 62.3,
        "cloudCover": 0,
        "dewPoint": 54.48,
        "forecastStart": 1748930400,
        "humidity": 0.74,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 62.83,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 59.82,
        "cloudCover": 0,
        "dewPoint": 53.76,
        "forecastStart": 1748941200,
        "humidity": 0.79,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 60.37,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 62.86,
        "cloudCover": 0,
        "dewPoint": 55.69,
        "forecastStart": 1748952000,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 63.3,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 76.08,
        "cloudCover": 0,
        "dewPoint": 58.33,
        "forecastStart": 1748962800,
        "humidity": 0.53,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 76.26,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 83.34,
        "cloudCover": 0,
        "dewPoint": 57.96,
        "forecastStart": 1748973600,
        "humidity": 0.42,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 83.73,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 84.14,
        "cloudCover": 0,
        "dewPoint": 57.87,
        "forecastStart": 1748984400,
        "humidity": 0.4,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 84.83,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 81.43,
        "cloudCover": 0,
        "dewPoint": 59.52,
        "forecastStart": 1748995200,
        "humidity": 0.49,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 80.8,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 72.22,
        "cloudCover": 0,
        "dewPoint": 60.6,
        "forecastStart": 1749006000,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 72.19,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 67.81,
        "cloudCover": 0,
        "dewPoint": 59.72,
        "forecastStart": 1749016800,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 67.8,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 65.91,
        "cloudCover": 0,
        "dewPoint": 58.98,
        "forecastStart": 1749027600,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 65.95,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.75,
        "cloudCover": 0,
        "dewPoint": 60.31,
        "forecastStart": 1749038400,
        "humidity": 0.76,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.61,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 78.86,
        "cloudCover": 0,
        "dewPoint": 63.1,
        "forecastStart": 1749049200,
        "humidity": 0.59,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 78.53,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 86.06,
        "cloudCover": 0,
        "dewPoint": 63.28,
        "forecastStart": 1749060000,
        "humidity": 0.48,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 85.06,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 85.99,
        "cloudCover": 0,
        "dewPoint": 63.19,
        "forecastStart": 1749070800,
        "humidity": 0.47,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 85.19,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 83.14,
        "cloudCover": 0,
        "dewPoint": 64.08,
        "forecastStart": 1749081600,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 81.54,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 75.35,
        "cloudCover": 0,
        "dewPoint": 64.89,
        "forecastStart": 1749092400,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 74.88,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 71.1,
        "cloudCover": 0,
        "dewPoint": 64.69,
        "forecastStart": 1749103200,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 70.54,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.54,
        "cloudCover": 0,
        "dewPoint": 64.17,
        "forecastStart": 1749114000,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 68,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 69.86,
        "cloudCover": 0,
        "dewPoint": 64.54,
        "forecastStart": 1749124800,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0.06,
        "precipProbability": 0,
        "temperature": 69.24,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 75.57,
        "cloudCover": 0,
        "dewPoint": 64.15,
        "forecastStart": 1749135600,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 75.07,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 81.26,
        "cloudCover": 0,
        "dewPoint": 63.91,
        "forecastStart": 1749146400,
        "humidity": 0.59,
        "icon": "clear",
        "precipIntensity": 0.08,
        "precipProbability": 0,
        "temperature": 79.61,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 80.77,
        "cloudCover": 0,
        "dewPoint": 62.73,
        "forecastStart": 1749157200,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 79.39,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 76.21,
        "cloudCover": 0,
        "dewPoint": 63.18,
        "forecastStart": 1749168000,
        "humidity": 0.65,
        "icon": "clear",
        "precipIntensity": 0.33,
        "precipProbability": 0,
        "temperature": 75.87,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 70.28,
        "cloudCover": 0,
        "dewPoint": 62.85,
        "forecastStart": 1749178800,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 69.93,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 66.59,
        "cloudCover": 0,
        "dewPoint": 61.86,
        "forecastStart": 1749189600,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0.06,
        "precipProbability": 0,
        "temperature": 66.27,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 64.21,
        "cloudCover": 0,
        "dewPoint": 60.85,
        "forecastStart": 1749200400,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 63.93,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 65.82,
        "cloudCover": 0,
        "dewPoint": 60.91,
        "forecastStart": 1749211200,
        "humidity": 0.87,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 65.48,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 73.37,
        "cloudCover": 0,
        "dewPoint": 62.56,
        "forecastStart": 1749222000,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 73.08,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 77.24,
        "cloudCover": 0,
        "dewPoint": 62.13,
        "forecastStart": 1749232800,
        "humidity": 0.6,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 77.02,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 76.98,
        "cloudCover": 0,
        "dewPoint": 60.28,
        "forecastStart": 1749243600,
        "humidity": 0.55,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 77,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 74.76,
        "cloudCover": 0,
        "dewPoint": 61.45,
        "forecastStart": 1749254400,
        "humidity": 0.65,
        "icon": "clear",
        "precipIntensity": 0.1,
        "precipProbability": 0,
        "temperature": 74.55,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 64.86,
        "cloudCover": 0,
        "dewPoint": 60.21,
        "forecastStart": 1749276000,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0.07,
        "precipProbability": 0,
        "temperature": 64.65,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 65.61,
        "cloudCover": 0,
        "dewPoint": 60.84,
        "forecastStart": 1749297600,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 65.34,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 78.99,
        "cloudCover": 0,
        "dewPoint": 62.01,
        "forecastStart": 1749319200,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 78.78,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 77.56,
        "cloudCover": 0,
        "dewPoint": 62.13,
        "forecastStart": 1749340800,
        "humidity": 0.6,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 77.31,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.25,
        "cloudCover": 0,
        "dewPoint": 63.12,
        "forecastStart": 1749362400,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0.05,
        "precipProbability": 0,
        "temperature": 67.82,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 69.27,
        "cloudCover": 0,
        "dewPoint": 63.91,
        "forecastStart": 1749384000,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.67,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 82.89,
        "cloudCover": 0,
        "dewPoint": 64.51,
        "forecastStart": 1749405600,
        "humidity": 0.59,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 80.98,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 78.29,
        "cloudCover": 0,
        "dewPoint": 64.35,
        "forecastStart": 1749427200,
        "humidity": 0.65,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 77.76,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.74,
        "cloudCover": 0,
        "dewPoint": 63.23,
        "forecastStart": 1749448800,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0.04,
        "precipProbability": 0,
        "temperature": 68.18,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 69.03,
        "cloudCover": 0,
        "dewPoint": 63.64,
        "forecastStart": 1749470400,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.49,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 83.24,
        "cloudCover": 0,
        "dewPoint": 65.89,
        "forecastStart": 1749492000,
        "humidity": 0.6,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 81.14,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 79.35,
        "cloudCover": 0,
        "dewPoint": 65.01,
        "forecastStart": 1749513600,
        "humidity": 0.64,
        "icon": "clear",
        "precipIntensity": 0.04,
        "precipProbability": 0,
        "temperature": 78.76,
        "uvIndex": 0
      }
    ]
  },
  "daily": {
    "data": [
      {
        "apparentTemperatureAvg": 63.48,
        "apparentTemperatureMax": 67.24,
        "apparentTemperatureMin": 59.72,
        "cloudCover": 0.01,
        "dewPointAvg": 51.92,
        "dewPointMax": 55.67,
        "dewPointMin": 48.16,
        "forecastEnd": 1748664000,
        "forecastStart": 1748577600,
        "humidity": 0.01,
        "icon": "rain",
        "moonPhase": 0.13,
        "precipIntensity": 0.5054,
        "precipProbability": 0,
        "pressure": 980.14,
        "sunriseTime": 1748599660,
        "sunsetTime": 1748652868,
        "temperatureAvg": 63.93,
        "temperatureMax": 67.8,
        "temperatureMin": 60.06,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windDirectionAvg": 208,
        "windGustAvg": 12.96,
        "windGustMax": 22.82,
        "windGustMin": 3.11,
        "windSpeedAvg": 4.78,
        "windSpeedMax": 8.89,
        "windSpeedMin": 0.66
      },
      {
        "apparentTemperatureAvg": 60.86,
        "apparentTemperatureMax": 67.11,
        "apparentTemperatureMin": 54.6,
        "cloudCover": 0,
        "dewPointAvg": 48.95,
        "dewPointMax": 55.15,
        "dewPointMin": 42.75,
        "forecastEnd": 1748750400,
        "forecastStart": 1748664000,
        "humidity": 0.01,
        "icon": "light_rain",
        "moonPhase": 0.17,
        "precipIntensity": 0.05,
        "precipProbability": 0,
        "pressure": 976.34,
        "sunriseTime": 1748686032,
        "sunsetTime": 1748739312,
        "temperatureAvg": 62.21,
        "temperatureMax": 68.58,
        "temperatureMin": 55.85,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windDirectionAvg": 277,
        "windGustAvg": 22.37,
        "windGustMax": 26.17,
        "windGustMin": 18.57,
        "windSpeedAvg": 8.02,
        "windSpeedMax": 10.18,
        "windSpeedMin": 5.86
      },
      {
        "apparentTemperatureAvg": 58.94,
        "apparentTemperatureMax": 68.8,
        "apparentTemperatureMin": 49.08,
        "cloudCover": 0,
        "dewPointAvg": 43.28,
        "dewPointMax": 45.5,
        "dewPointMin": 41.05,
        "forecastEnd": 1748836800,
        "forecastStart": 1748750400,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.2,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748772406,
        "sunsetTime": 1748825756,
        "temperatureAvg": 59.37,
        "temperatureMax": 70.41,
        "temperatureMin": 48.33,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 65,
        "apparentTemperatureMax": 79.35,
        "apparentTemperatureMin": 50.66,
        "cloudCover": 0,
        "dewPointAvg": 50,
        "dewPointMax": 55.02,
        "dewPointMin": 44.98,
        "forecastEnd": 1748923200,
        "forecastStart": 1748836800,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.23,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748858783,
        "sunsetTime": 1748912198,
        "temperatureAvg": 65.65,
        "temperatureMax": 79.21,
        "temperatureMin": 52.09,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 71.98,
        "apparentTemperatureMax": 84.14,
        "apparentTemperatureMin": 59.82,
        "cloudCover": 0,
        "dewPointAvg": 57.18,
        "dewPointMax": 60.6,
        "dewPointMin": 53.76,
        "forecastEnd": 1749009600,
        "forecastStart": 1748923200,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.27,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748945161,
        "sunsetTime": 1748998640,
        "temperatureAvg": 72.6,
        "temperatureMax": 84.83,
        "temperatureMin": 60.37,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 75.99,
        "apparentTemperatureMax": 86.06,
        "apparentTemperatureMin": 65.91,
        "cloudCover": 0,
        "dewPointAvg": 61.93,
        "dewPointMax": 64.89,
        "dewPointMin": 58.98,
        "forecastEnd": 1749096000,
        "forecastStart": 1749009600,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.3,
        "precipIntensity": 0.04,
        "precipProbability": 0,
        "sunriseTime": 1749031541,
        "sunsetTime": 1749085079,
        "temperatureAvg": 75.57,
        "temperatureMax": 85.19,
        "temperatureMin": 65.95,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 74.9,
        "apparentTemperatureMax": 81.26,
        "apparentTemperatureMin": 68.54,
        "cloudCover": 0,
        "dewPointAvg": 63.71,
        "dewPointMax": 64.69,
        "dewPointMin": 62.73,
        "forecastEnd": 1749182400,
        "forecastStart": 1749096000,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.33,
        "precipIntensity": 0.54,
        "precipProbability": 0,
        "sunriseTime": 1749117922,
        "sunsetTime": 1749171518,
        "temperatureAvg": 73.81,
        "temperatureMax": 79.61,
        "temperatureMin": 68,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 70.72,
        "apparentTemperatureMax": 77.24,
        "apparentTemperatureMin": 64.21,
        "cloudCover": 0,
        "dewPointAvg": 61.42,
        "dewPointMax": 62.56,
        "dewPointMin": 60.28,
        "forecastEnd": 1749268800,
        "forecastStart": 1749182400,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.36,
        "precipIntensity": 0.26,
        "precipProbability": 0,
        "sunriseTime": 1749204306,
        "sunsetTime": 1749257955,
        "temperatureAvg": 70.47,
        "temperatureMax": 77.02,
        "temperatureMin": 63.93,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 71.93,
        "apparentTemperatureMax": 78.99,
        "apparentTemperatureMin": 64.86,
        "cloudCover": 0,
        "dewPointAvg": 61.17,
        "dewPointMax": 62.13,
        "dewPointMin": 60.21,
        "forecastEnd": 1749355200,
        "forecastStart": 1749268800,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.39,
        "precipIntensity": 0.08,
        "precipProbability": 0,
        "sunriseTime": 1749290692,
        "sunsetTime": 1749344391,
        "temperatureAvg": 71.72,
        "temperatureMax": 78.78,
        "temperatureMin": 64.65,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 75.57,
        "apparentTemperatureMax": 82.89,
        "apparentTemperatureMin": 68.25,
        "cloudCover": 0,
        "dewPointAvg": 63.81,
        "dewPointMax": 64.51,
        "dewPointMin": 63.12,
        "forecastEnd": 1749441600,
        "forecastStart": 1749355200,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.42,
        "precipIntensity": 0.08,
        "precipProbability": 0,
        "sunriseTime": 1749377079,
        "sunsetTime": 1749430825,
        "temperatureAvg": 74.4,
        "temperatureMax": 80.98,
        "temperatureMin": 67.82,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 75.99,
        "apparentTemperatureMax": 83.24,
        "apparentTemperatureMin": 68.74,
        "cloudCover": 0,
        "dewPointAvg": 64.56,
        "dewPointMax": 65.89,
        "dewPointMin": 63.23,
        "forecastEnd": 1749528000,
        "forecastStart": 1749441600,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.45,
        "precipIntensity": 0.08,
        "precipProbability": 0,
        "sunriseTime": 1749463469,
        "sunsetTime": 1749517258,
        "temperatureAvg": 74.66,
        "temperatureMax": 81.14,
        "temperatureMin": 68.18,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      }
    ]
  }
}

Our
Approach

We believe in making weather data work for companies of all sizes. We built WeatherXu to make enterprise-grade weather data accessible to more businesses.

Data-Driven Foundation

We aggregate weather data from multiple trusted sources, applying sophisticated processing to provide comprehensive global coverage.

API-First Design

Everything we build starts with the developer experience, delivering weather data through a clean, intuitive API.

Scales with You

Our infrastructure is designed for reliability, maintaining 99.9%+ uptime while serving millions of API requests.

Continuous Processing

Our systems constantly processs data from our sources 24/7, ensuring you have the latest weather information to power your applications.

Interested in our Weather API?

No credit card required · Cancel anytime