APIs/Weather

Weather API

GET /weather?lat={lat}&lon={lon}

Give it a latitude and longitude and get back current conditions from the nearest official station: temperature (feels like too), humidity, wind, pressure, and conditions.

Paid deep adds a 7-day forecast and any active alerts for US and Canada points, an empty list when skies are quiet.

12
countries
15m
observation refresh
7-day
paid forecast
100%
official national agencies

Try it

$ curl "https://api.parseapi.com/weather?lat=40.7128&lon=-74.006" \
  -H "X-API-Key: YOUR_API_KEY"

// 200 · ~16ms · USA
{
  "latitude": 40.7128,
  "longitude": -74.006,
  "temperature": 25.6,
  "temperature_f": 78.1,
  "feels_like": 26.4,
  "feels_like_f": 79.5,
  "dewpoint": 21.1,
  "dewpoint_f": 70,
  "humidity": 85,
  "wind_speed": 7.6,
  "wind_speed_mph": 4.7,
  "wind_gust": null,
  "wind_gust_mph": null,
  "wind_direction": 200,
  "pressure": 1016,
  "pressure_inhg": 30,
  "visibility": 16.1,
  "visibility_mi": 10,
  "condition": "clear",
  "condition_name": "Clear",
  "condition_emoji": "☀️",
  "observed_at": "2026-08-09T12:51:00+00:00",
  "station": "KNYC",
  "station_name": "New York City, Central Park",
  "station_distance": 8.51,
  "station_distance_mi": 5.29,
  "source": "nws",
  "source_name": "National Weather Service"
}

Response fields

latitude
Input latitude
longitude
Input longitude
temperature
Temperature in Celsius
temperature_f
Temperature in Fahrenheit
feels_like
Heat index, wind chill, or temperature. Celsius
feels_like_f
Same, in Fahrenheit
dewpoint
Dew point, Celsius
dewpoint_f
Dew point, Fahrenheit
humidity
Relative humidity, percent
wind_speed
Sustained wind speed, km/h
wind_speed_mph
Sustained wind speed, mph
wind_gust
Gust speed, km/h. Null when not gusting
wind_gust_mph
Gust speed, mph. Null when not gusting
wind_direction
Wind direction, degrees. Null when calm
pressure
Pressure, hPa
pressure_inhg
Pressure, inHg
visibility
Visibility, km
visibility_mi
Visibility, miles
condition
Bounded condition code, e.g. rain, fog, clear
condition_name
Readable condition text as reported
condition_emoji
One emoji for the condition code
observed_at
Observation timestamp
station
Nearest station id
station_name
Readable station name
station_distance
km from the input point
station_distance_mi
Miles from the input point
source
Upstream agency code (nws, msc, dwd, bom, ...)
source_name
Upstream agency full name

SPEED

Fast from everywhere.

Median time for a core lookup to reach a real city, first byte back, measured live from 16 cities.

US

16ms

EU

19ms

APAC

45ms

LatAm

20ms

ME

127ms

See live status →

Coverage

Twelve countries, each from its official national agency.

  • United States
  • Canada
  • Germany
  • Australia
  • Japan
  • Sweden
  • Finland
  • Austria
  • Ireland
  • Portugal
  • Poland
  • Switzerland