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:16 PM
Saturday, May 17
67°F
Windy
14 mph
Wind Speed
1%
Humidity
981 mb
Pressure
SAT
67°F
SUN
72°F
MON
70°F
TUE
61°F
Columbus
LIVE
Ohio, US
67°F
Windy
14 mph
Wind Speed
1%
Humidity
981 mb
Pressure
SAT
67°F
SUN
72°F
MON
70°F
TUE
61°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": 1747523780,
  "latitude": 39.9625,
  "longitude": -83.0061,
  "timezone": "America/New_York",
  "timezone_abbreviation": "EDT",
  "timezone_offset": -14400,
  "units": "imperial",
  "alerts": [

  ],
  "currently": {
    "apparentTemperature": 66.12,
    "cloudCover": 0.59,
    "dewPoint": 47.26,
    "humidity": 0.58,
    "icon": "windy",
    "precipIntensity": 0,
    "pressure": 980.5,
    "temperature": 66.99,
    "uvIndex": 0,
    "visibility": 32808,
    "windDirection": 279,
    "windGust": 29.78,
    "windSpeed": 14.23
  },
  "hourly": {
    "data": [
      {
        "apparentTemperature": 64.34,
        "cloudCover": 0.59,
        "dewPoint": 48.46,
        "forecastStart": 1747526400,
        "humidity": 0.58,
        "icon": "mostly_cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 980,
        "temperature": 65.38,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 286,
        "windGust": 24.77,
        "windSpeed": 10.67
      },
      {
        "apparentTemperature": 63.18,
        "cloudCover": 1,
        "dewPoint": 50.69,
        "forecastStart": 1747530000,
        "humidity": 0.61,
        "icon": "cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 980.4,
        "temperature": 64.2,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 286,
        "windGust": 18.28,
        "windSpeed": 7.66
      },
      {
        "apparentTemperature": 60.76,
        "cloudCover": 0.3,
        "dewPoint": 51.95,
        "forecastStart": 1747533600,
        "humidity": 0.64,
        "icon": "partly_cloudy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 980.7,
        "temperature": 61.87,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 300,
        "windGust": 20.17,
        "windSpeed": 6.09
      },
      {
        "apparentTemperature": 60.16,
        "cloudCover": 0.11,
        "dewPoint": 50.16,
        "forecastStart": 1747537200,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 981.3,
        "temperature": 61.23,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 288,
        "windGust": 9.31,
        "windSpeed": 4.02
      },
      {
        "apparentTemperature": 58.91,
        "cloudCover": 0,
        "dewPoint": 50.18,
        "forecastStart": 1747540800,
        "humidity": 0.69,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 981.5,
        "temperature": 59.97,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 288,
        "windGust": 9.65,
        "windSpeed": 3.86
      },
      {
        "apparentTemperature": 57.73,
        "cloudCover": 0,
        "dewPoint": 50.18,
        "forecastStart": 1747544400,
        "humidity": 0.73,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 981.9,
        "temperature": 58.73,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 280,
        "windGust": 8.91,
        "windSpeed": 3.17
      },
      {
        "apparentTemperature": 57.1,
        "cloudCover": 0,
        "dewPoint": 50.45,
        "forecastStart": 1747548000,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 981.5,
        "temperature": 58.06,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 260,
        "windGust": 7.43,
        "windSpeed": 2.34
      },
      {
        "apparentTemperature": 55.63,
        "cloudCover": 0,
        "dewPoint": 50.45,
        "forecastStart": 1747551600,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 981.9,
        "temperature": 56.61,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 235,
        "windGust": 7.29,
        "windSpeed": 3.4
      },
      {
        "apparentTemperature": 55.41,
        "cloudCover": 0,
        "dewPoint": 49.57,
        "forecastStart": 1747555200,
        "humidity": 0.8,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 982.4,
        "temperature": 56.32,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 255,
        "windGust": 10.07,
        "windSpeed": 3.62
      },
      {
        "apparentTemperature": 54.13,
        "cloudCover": 0.01,
        "dewPoint": 49.68,
        "forecastStart": 1747558800,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 982.4,
        "temperature": 55.11,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 266,
        "windGust": 11.51,
        "windSpeed": 2.6
      },
      {
        "apparentTemperature": 54.13,
        "cloudCover": 0.04,
        "dewPoint": 49.23,
        "forecastStart": 1747562400,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 982.3,
        "temperature": 55.11,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 270,
        "windGust": 11.07,
        "windSpeed": 2.56
      },
      {
        "apparentTemperature": 53.6,
        "cloudCover": 0,
        "dewPoint": 48.51,
        "forecastStart": 1747566000,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 984.29,
        "temperature": 54.63,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 301,
        "windGust": 20.36,
        "windSpeed": 8.11
      },
      {
        "apparentTemperature": 55.99,
        "cloudCover": 0,
        "dewPoint": 49.59,
        "forecastStart": 1747569600,
        "humidity": 0.76,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 984.71,
        "temperature": 57.02,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 281,
        "windGust": 21.25,
        "windSpeed": 10.15
      },
      {
        "apparentTemperature": 58.11,
        "cloudCover": 0,
        "dewPoint": 49.51,
        "forecastStart": 1747573200,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 984.74,
        "temperature": 59.2,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 290,
        "windGust": 20.8,
        "windSpeed": 11.49
      },
      {
        "apparentTemperature": 60.75,
        "cloudCover": 0,
        "dewPoint": 50.18,
        "forecastStart": 1747576800,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.78,
        "temperature": 61.77,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 281,
        "windGust": 19.46,
        "windSpeed": 11.35
      },
      {
        "apparentTemperature": 62.73,
        "cloudCover": 0,
        "dewPoint": 50,
        "forecastStart": 1747580400,
        "humidity": 0.61,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.73,
        "temperature": 63.79,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 280,
        "windGust": 19.24,
        "windSpeed": 11.48
      },
      {
        "apparentTemperature": 65.18,
        "cloudCover": 0,
        "dewPoint": 50.34,
        "forecastStart": 1747584000,
        "humidity": 0.57,
        "icon": "windy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.87,
        "temperature": 66.18,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 271,
        "windGust": 16.33,
        "windSpeed": 12.08
      },
      {
        "apparentTemperature": 66.75,
        "cloudCover": 0,
        "dewPoint": 50.61,
        "forecastStart": 1747587600,
        "humidity": 0.55,
        "icon": "windy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.49,
        "temperature": 67.69,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 276,
        "windGust": 18.34,
        "windSpeed": 12.13
      },
      {
        "apparentTemperature": 68.61,
        "cloudCover": 0,
        "dewPoint": 51.19,
        "forecastStart": 1747591200,
        "humidity": 0.52,
        "icon": "windy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.21,
        "temperature": 69.51,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 280,
        "windGust": 14.99,
        "windSpeed": 12.24
      },
      {
        "apparentTemperature": 69.92,
        "cloudCover": 0,
        "dewPoint": 51.01,
        "forecastStart": 1747594800,
        "humidity": 0.5,
        "icon": "windy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.37,
        "temperature": 70.79,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 279,
        "windGust": 15.21,
        "windSpeed": 12.3
      },
      {
        "apparentTemperature": 70.66,
        "cloudCover": 0,
        "dewPoint": 50.61,
        "forecastStart": 1747598400,
        "humidity": 0.48,
        "icon": "windy",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.23,
        "temperature": 71.55,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 279,
        "windGust": 14.76,
        "windSpeed": 12.41
      },
      {
        "apparentTemperature": 70.38,
        "cloudCover": 0,
        "dewPoint": 50.83,
        "forecastStart": 1747602000,
        "humidity": 0.48,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.42,
        "temperature": 71.29,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 284,
        "windGust": 14.32,
        "windSpeed": 11.61
      },
      {
        "apparentTemperature": 70.48,
        "cloudCover": 0,
        "dewPoint": 51.12,
        "forecastStart": 1747605600,
        "humidity": 0.48,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 985.61,
        "temperature": 71.38,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 290,
        "windGust": 14.99,
        "windSpeed": 11.18
      },
      {
        "apparentTemperature": 69.58,
        "cloudCover": 0,
        "dewPoint": 51.01,
        "forecastStart": 1747609200,
        "humidity": 0.5,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 986.15,
        "temperature": 70.48,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 293,
        "windGust": 13.42,
        "windSpeed": 10.47
      },
      {
        "apparentTemperature": 67.62,
        "cloudCover": 0,
        "dewPoint": 50.52,
        "forecastStart": 1747612800,
        "humidity": 0.53,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 986.57,
        "temperature": 68.58,
        "uvIndex": 0,
        "visibility": 32808,
        "windDirection": 311,
        "windGust": 13.65,
        "windSpeed": 9.74
      },
      {
        "apparentTemperature": 59.84,
        "cloudCover": 0,
        "dewPoint": 49.91,
        "forecastStart": 1747623600,
        "humidity": 0.68,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 60.85,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 54.86,
        "cloudCover": 0,
        "dewPoint": 48.99,
        "forecastStart": 1747634400,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 55.9,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 51.03,
        "cloudCover": 0,
        "dewPoint": 48.31,
        "forecastStart": 1747645200,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 52.12,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 53.17,
        "cloudCover": 0,
        "dewPoint": 48.88,
        "forecastStart": 1747656000,
        "humidity": 0.83,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 54.16,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 62.86,
        "cloudCover": 0,
        "dewPoint": 50.27,
        "forecastStart": 1747666800,
        "humidity": 0.62,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 63.86,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 68.62,
        "cloudCover": 0,
        "dewPoint": 50.86,
        "forecastStart": 1747677600,
        "humidity": 0.51,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 69.57,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 69.3,
        "cloudCover": 0,
        "dewPoint": 50.49,
        "forecastStart": 1747688400,
        "humidity": 0.49,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 70.27,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 64.93,
        "cloudCover": 0,
        "dewPoint": 49.66,
        "forecastStart": 1747699200,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 66,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 56.77,
        "cloudCover": 0,
        "dewPoint": 47.12,
        "forecastStart": 1747710000,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 58.15,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 51.69,
        "cloudCover": 0,
        "dewPoint": 43.84,
        "forecastStart": 1747720800,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 53.37,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 49.49,
        "cloudCover": 0,
        "dewPoint": 42.71,
        "forecastStart": 1747731600,
        "humidity": 0.72,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 51.28,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 50.23,
        "cloudCover": 0,
        "dewPoint": 43.56,
        "forecastStart": 1747742400,
        "humidity": 0.73,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 51.91,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 56.89,
        "cloudCover": 0,
        "dewPoint": 46.51,
        "forecastStart": 1747753200,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 58.26,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 60.16,
        "cloudCover": 0,
        "dewPoint": 50.2,
        "forecastStart": 1747764000,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0.14,
        "precipProbability": 0,
        "temperature": 61.23,
        "uvIndex": 0,
        "visibility": 32808
      },
      {
        "apparentTemperature": 60.37,
        "cloudCover": 0,
        "dewPoint": 52.03,
        "forecastStart": 1747774800,
        "humidity": 0.71,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 61.21,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 60.76,
        "cloudCover": 0,
        "dewPoint": 53.24,
        "forecastStart": 1747785600,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0.15,
        "precipProbability": 0,
        "temperature": 61.39,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 57.96,
        "cloudCover": 0,
        "dewPoint": 53.6,
        "forecastStart": 1747796400,
        "humidity": 0.82,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 58.55,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 56.93,
        "cloudCover": 0,
        "dewPoint": 54.45,
        "forecastStart": 1747807200,
        "humidity": 0.9,
        "icon": "clear",
        "precipIntensity": 0.41,
        "precipProbability": 0,
        "temperature": 57.27,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 57.32,
        "cloudCover": 0,
        "dewPoint": 55.49,
        "forecastStart": 1747818000,
        "humidity": 0.92,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 57.54,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 58.39,
        "cloudCover": 0,
        "dewPoint": 56.32,
        "forecastStart": 1747828800,
        "humidity": 0.92,
        "icon": "clear",
        "precipIntensity": 0.08,
        "precipProbability": 0,
        "temperature": 58.51,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 62.99,
        "cloudCover": 0,
        "dewPoint": 57.15,
        "forecastStart": 1747839600,
        "humidity": 0.82,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 63.12,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 63.62,
        "cloudCover": 0,
        "dewPoint": 55.87,
        "forecastStart": 1747850400,
        "humidity": 0.74,
        "icon": "clear",
        "precipIntensity": 0.05,
        "precipProbability": 0,
        "temperature": 64.04,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 61.48,
        "cloudCover": 0,
        "dewPoint": 52.9,
        "forecastStart": 1747861200,
        "humidity": 0.73,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 62.13,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 56.82,
        "cloudCover": 0,
        "dewPoint": 50.25,
        "forecastStart": 1747872000,
        "humidity": 0.75,
        "icon": "clear",
        "precipIntensity": 0.07,
        "precipProbability": 0,
        "temperature": 57.81,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 52.15,
        "cloudCover": 0,
        "dewPoint": 47.66,
        "forecastStart": 1747882800,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 53.31,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 49.85,
        "cloudCover": 0,
        "dewPoint": 46.69,
        "forecastStart": 1747893600,
        "humidity": 0.83,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 51.13,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 44.56,
        "forecastStart": 1747904400,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 48.92,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 44.74,
        "forecastStart": 1747915200,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 48.79,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 52.7,
        "cloudCover": 0,
        "dewPoint": 44.67,
        "forecastStart": 1747926000,
        "humidity": 0.7,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 54.28,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 56.75,
        "cloudCover": 0,
        "dewPoint": 44.91,
        "forecastStart": 1747936800,
        "humidity": 0.61,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 58.35,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 57.68,
        "cloudCover": 0,
        "dewPoint": 43.72,
        "forecastStart": 1747947600,
        "humidity": 0.57,
        "icon": "clear",
        "precipIntensity": 0.01,
        "precipProbability": 0,
        "temperature": 59.36,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 54.81,
        "cloudCover": 0,
        "dewPoint": 44.02,
        "forecastStart": 1747958400,
        "humidity": 0.61,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 56.59,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 50.46,
        "cloudCover": 0,
        "dewPoint": 43.34,
        "forecastStart": 1747969200,
        "humidity": 0.72,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 52.16,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 43.3,
        "forecastStart": 1747980000,
        "humidity": 0.78,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 49.84,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 43.18,
        "forecastStart": 1747990800,
        "humidity": 0.82,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 48.33,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 43.61,
        "forecastStart": 1748001600,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 49.6,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 56.06,
        "cloudCover": 0,
        "dewPoint": 45.84,
        "forecastStart": 1748012400,
        "humidity": 0.64,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 57.6,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 60.52,
        "cloudCover": 0,
        "dewPoint": 45.73,
        "forecastStart": 1748023200,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 61.99,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 61.35,
        "cloudCover": 0,
        "dewPoint": 45.61,
        "forecastStart": 1748034000,
        "humidity": 0.53,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 62.87,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 59.04,
        "cloudCover": 0,
        "dewPoint": 46.06,
        "forecastStart": 1748044800,
        "humidity": 0.59,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 60.51,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 53.69,
        "cloudCover": 0,
        "dewPoint": 46.08,
        "forecastStart": 1748055600,
        "humidity": 0.73,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 55.06,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 50.05,
        "cloudCover": 0,
        "dewPoint": 46.09,
        "forecastStart": 1748066400,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 51.4,
        "uvIndex": 0
      },
      {
        "cloudCover": 0,
        "dewPoint": 45.14,
        "forecastStart": 1748077200,
        "humidity": 0.83,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 49.91,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 51.28,
        "cloudCover": 0,
        "dewPoint": 46.58,
        "forecastStart": 1748088000,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 52.52,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 60.14,
        "cloudCover": 0,
        "dewPoint": 48.52,
        "forecastStart": 1748098800,
        "humidity": 0.63,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 61.34,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 64.72,
        "cloudCover": 0,
        "dewPoint": 49.68,
        "forecastStart": 1748109600,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 65.8,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 65.15,
        "cloudCover": 0,
        "dewPoint": 50.09,
        "forecastStart": 1748120400,
        "humidity": 0.56,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 66.2,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 62.66,
        "cloudCover": 0,
        "dewPoint": 51.03,
        "forecastStart": 1748131200,
        "humidity": 0.64,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 63.59,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 56.83,
        "cloudCover": 0,
        "dewPoint": 51.33,
        "forecastStart": 1748142000,
        "humidity": 0.79,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 57.65,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 54.25,
        "cloudCover": 0,
        "dewPoint": 50.74,
        "forecastStart": 1748152800,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 55,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 53.06,
        "cloudCover": 0,
        "dewPoint": 50.05,
        "forecastStart": 1748163600,
        "humidity": 0.89,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 53.8,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 55.34,
        "cloudCover": 0,
        "dewPoint": 51.87,
        "forecastStart": 1748174400,
        "humidity": 0.86,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 55.99,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 71.02,
        "cloudCover": 0,
        "dewPoint": 53.4,
        "forecastStart": 1748196000,
        "humidity": 0.52,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 71.71,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.9,
        "cloudCover": 0,
        "dewPoint": 54.61,
        "forecastStart": 1748217600,
        "humidity": 0.6,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 69.44,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 58.21,
        "cloudCover": 0,
        "dewPoint": 52.45,
        "forecastStart": 1748239200,
        "humidity": 0.81,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 58.82,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 58.95,
        "cloudCover": 0,
        "dewPoint": 53.56,
        "forecastStart": 1748260800,
        "humidity": 0.82,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 59.45,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 71.75,
        "cloudCover": 0,
        "dewPoint": 56.1,
        "forecastStart": 1748282400,
        "humidity": 0.57,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 72.16,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.5,
        "cloudCover": 0,
        "dewPoint": 56.43,
        "forecastStart": 1748304000,
        "humidity": 0.64,
        "icon": "clear",
        "precipIntensity": 0,
        "precipProbability": 0,
        "temperature": 68.9,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 60.05,
        "cloudCover": 0,
        "dewPoint": 55.51,
        "forecastStart": 1748325600,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0.15,
        "precipProbability": 0,
        "temperature": 60.37,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 59.62,
        "cloudCover": 0,
        "dewPoint": 55.29,
        "forecastStart": 1748347200,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 59.97,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 71.42,
        "cloudCover": 0,
        "dewPoint": 57.04,
        "forecastStart": 1748368800,
        "humidity": 0.6,
        "icon": "clear",
        "precipIntensity": 0.02,
        "precipProbability": 0,
        "temperature": 71.73,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 68.41,
        "cloudCover": 0,
        "dewPoint": 57.38,
        "forecastStart": 1748390400,
        "humidity": 0.66,
        "icon": "clear",
        "precipIntensity": 0.06,
        "precipProbability": 0,
        "temperature": 68.74,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 58.75,
        "cloudCover": 0,
        "dewPoint": 53.96,
        "forecastStart": 1748412000,
        "humidity": 0.84,
        "icon": "clear",
        "precipIntensity": 0.07,
        "precipProbability": 0,
        "temperature": 59.18,
        "uvIndex": 0
      },
      {
        "apparentTemperature": 58.75,
        "cloudCover": 0,
        "dewPoint": 54.25,
        "forecastStart": 1748433600,
        "humidity": 0.85,
        "icon": "clear",
        "precipIntensity": 0.03,
        "precipProbability": 0,
        "temperature": 59.14,
        "uvIndex": 0
      }
    ]
  },
  "daily": {
    "data": [
      {
        "apparentTemperatureAvg": 62.25,
        "apparentTemperatureMax": 64.34,
        "apparentTemperatureMin": 60.16,
        "cloudCover": 0.01,
        "dewPointAvg": 49.78,
        "dewPointMax": 52.29,
        "dewPointMin": 47.26,
        "forecastEnd": 1747540800,
        "forecastStart": 1747454400,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.66,
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 980.55,
        "sunriseTime": 1747476979,
        "sunsetTime": 1747529000,
        "temperatureAvg": 64.11,
        "temperatureMax": 66.99,
        "temperatureMin": 61.23,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windDirectionAvg": 289,
        "windGustAvg": 19.54,
        "windGustMax": 29.78,
        "windGustMin": 9.31,
        "windSpeedAvg": 9.12,
        "windSpeedMax": 14.23,
        "windSpeedMin": 4.02
      },
      {
        "apparentTemperatureAvg": 62.13,
        "apparentTemperatureMax": 70.66,
        "apparentTemperatureMin": 53.6,
        "cloudCover": 0,
        "dewPointAvg": 49.85,
        "dewPointMax": 51.19,
        "dewPointMin": 48.51,
        "forecastEnd": 1747627200,
        "forecastStart": 1747540800,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.69,
        "precipIntensity": 0,
        "precipProbability": 0,
        "pressure": 984.03,
        "sunriseTime": 1747563329,
        "sunsetTime": 1747615456,
        "temperatureAvg": 63.09,
        "temperatureMax": 71.55,
        "temperatureMin": 54.63,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windDirectionAvg": 278,
        "windGustAvg": 14.27,
        "windGustMax": 21.25,
        "windGustMin": 7.29,
        "windSpeedAvg": 7.38,
        "windSpeedMax": 12.41,
        "windSpeedMin": 2.34
      },
      {
        "apparentTemperatureAvg": 60.16,
        "apparentTemperatureMax": 69.3,
        "apparentTemperatureMin": 51.03,
        "cloudCover": 0,
        "dewPointAvg": 48.99,
        "dewPointMax": 50.86,
        "dewPointMin": 47.12,
        "forecastEnd": 1747713600,
        "forecastStart": 1747627200,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.73,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1747649680,
        "sunsetTime": 1747701912,
        "temperatureAvg": 61.2,
        "temperatureMax": 70.27,
        "temperatureMin": 52.12,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 55.12,
        "apparentTemperatureMax": 60.76,
        "apparentTemperatureMin": 49.49,
        "cloudCover": 0,
        "dewPointAvg": 48.16,
        "dewPointMax": 53.6,
        "dewPointMin": 42.71,
        "forecastEnd": 1747800000,
        "forecastStart": 1747713600,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.76,
        "precipIntensity": 0.36,
        "precipProbability": 0,
        "sunriseTime": 1747736034,
        "sunsetTime": 1747788366,
        "temperatureAvg": 56.34,
        "temperatureMax": 61.39,
        "temperatureMin": 51.28,
        "uvIndexMax": 0,
        "visibility": 32808,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 57.89,
        "apparentTemperatureMax": 63.62,
        "apparentTemperatureMin": 52.15,
        "cloudCover": 0,
        "dewPointAvg": 52.4,
        "dewPointMax": 57.15,
        "dewPointMin": 47.66,
        "forecastEnd": 1747886400,
        "forecastStart": 1747800000,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.8,
        "precipIntensity": 0.67,
        "precipProbability": 0,
        "sunriseTime": 1747822388,
        "sunsetTime": 1747874820,
        "temperatureAvg": 58.68,
        "temperatureMax": 64.04,
        "temperatureMin": 53.31,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 53.76,
        "apparentTemperatureMax": 57.68,
        "apparentTemperatureMin": 49.85,
        "cloudCover": 0,
        "dewPointAvg": 45.01,
        "dewPointMax": 46.69,
        "dewPointMin": 43.34,
        "forecastEnd": 1747972800,
        "forecastStart": 1747886400,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.83,
        "precipIntensity": 0.07,
        "precipProbability": 0,
        "sunriseTime": 1747908745,
        "sunsetTime": 1747961273,
        "temperatureAvg": 54.08,
        "temperatureMax": 59.36,
        "temperatureMin": 48.79,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 57.52,
        "apparentTemperatureMax": 61.35,
        "apparentTemperatureMin": 53.69,
        "cloudCover": 0,
        "dewPointAvg": 44.63,
        "dewPointMax": 46.08,
        "dewPointMin": 43.18,
        "forecastEnd": 1748059200,
        "forecastStart": 1747972800,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.87,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1747995103,
        "sunsetTime": 1748047726,
        "temperatureAvg": 55.6,
        "temperatureMax": 62.87,
        "temperatureMin": 48.33,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 57.6,
        "apparentTemperatureMax": 65.15,
        "apparentTemperatureMin": 50.05,
        "cloudCover": 0,
        "dewPointAvg": 48.24,
        "dewPointMax": 51.33,
        "dewPointMin": 45.14,
        "forecastEnd": 1748145600,
        "forecastStart": 1748059200,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.91,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748081463,
        "sunsetTime": 1748134178,
        "temperatureAvg": 58.05,
        "temperatureMax": 66.2,
        "temperatureMin": 49.91,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 62.04,
        "apparentTemperatureMax": 71.02,
        "apparentTemperatureMin": 53.06,
        "cloudCover": 0,
        "dewPointAvg": 52.33,
        "dewPointMax": 54.61,
        "dewPointMin": 50.05,
        "forecastEnd": 1748232000,
        "forecastStart": 1748145600,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.95,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748167825,
        "sunsetTime": 1748220628,
        "temperatureAvg": 62.75,
        "temperatureMax": 71.71,
        "temperatureMin": 53.8,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 64.98,
        "apparentTemperatureMax": 71.75,
        "apparentTemperatureMin": 58.21,
        "cloudCover": 0,
        "dewPointAvg": 54.44,
        "dewPointMax": 56.43,
        "dewPointMin": 52.45,
        "forecastEnd": 1748318400,
        "forecastStart": 1748232000,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.98,
        "precipIntensity": 0,
        "precipProbability": 0,
        "sunriseTime": 1748254188,
        "sunsetTime": 1748307078,
        "temperatureAvg": 65.49,
        "temperatureMax": 72.16,
        "temperatureMin": 58.82,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 65.52,
        "apparentTemperatureMax": 71.42,
        "apparentTemperatureMin": 59.62,
        "cloudCover": 0,
        "dewPointAvg": 56.34,
        "dewPointMax": 57.38,
        "dewPointMin": 55.29,
        "forecastEnd": 1748404800,
        "forecastStart": 1748318400,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.03,
        "precipIntensity": 0.25,
        "precipProbability": 0,
        "sunriseTime": 1748340553,
        "sunsetTime": 1748393527,
        "temperatureAvg": 65.85,
        "temperatureMax": 71.73,
        "temperatureMin": 59.97,
        "uvIndexMax": 0,
        "windGustMax": null,
        "windGustMin": null,
        "windSpeedMax": null,
        "windSpeedMin": null
      },
      {
        "apparentTemperatureAvg": 58.75,
        "apparentTemperatureMax": 58.75,
        "apparentTemperatureMin": 58.75,
        "cloudCover": 0,
        "dewPointAvg": 54.1,
        "dewPointMax": 54.25,
        "dewPointMin": 53.96,
        "forecastEnd": 1748491200,
        "forecastStart": 1748404800,
        "humidity": 0.01,
        "icon": "clear",
        "moonPhase": 0.06,
        "precipIntensity": 0.1,
        "precipProbability": 0,
        "sunriseTime": 1748426920,
        "sunsetTime": 1748479975,
        "temperatureAvg": 59.16,
        "temperatureMax": 59.18,
        "temperatureMin": 59.14,
        "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