v1

latestSwagger 2.02026-07-132137180.4 KB
60 Minute Rain/Snow Nowcast

Returns a 60 minute precipitation forecast - Given Lat/Lon.

Returns a 60 minute precipitation forecast, where each point represents one minute (1 min) period.

get/forecast/minutely

Query parameters

latnumber double

Latitude component of location.

lonnumber double

Longitude component of location.

citystring string

City search.. Example - &city=Raleigh,NC or &city=Berlin,DE or city=Paris&country=FR

postal_codestring string

Postal Code. Example: 28546

countrystring string

Country Code (2 letter) - to be used with postal_code.

stationstring string

Station Call ID.

units'S' | 'I' | 'M' string

Convert to units. Default Metric. Options (I = Imperial, M = Metric, S = Scientific)

keystring string required

Your registered API key.

Response

A forecast object.

city_namestring

Nearest city name

state_codestring

State Abbreviation

country_codestring

Country Abbreviation

latnumber

Latitude

lonnumber

Longitude

timezonestring

Local IANA time zone

Example response

{
  "city_name": "Raleigh",
  "state_code": "NC",
  "country_code": "US",
  "lat": 38.25,
  "lon": -78,
  "timezone": "America/New_York",
  "data": [
    {
      "timestamp_utc": "2017-03-15 13:11",
      "timestamp_local": "2017-03-15 13:11",
      "precip": 2,
      "temp": 13.85,
      "snow": 10
    }
  ]
}