US Weather Forecast & Alerts Tracker (NWS) avatar

US Weather Forecast & Alerts Tracker (NWS)

Pricing

$10.00 / 1,000 location checkeds

Go to Apify Store
US Weather Forecast & Alerts Tracker (NWS)

US Weather Forecast & Alerts Tracker (NWS)

Get forecast, current conditions, and active weather alerts for any US location from the official National Weather Service API. No key, no proxy.

Pricing

$10.00 / 1,000 location checkeds

Rating

0.0

(0)

Developer

Timothy Kelvin

Timothy Kelvin

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 days ago

Last modified

Categories

Share

Give it a list of US coordinates. It returns the forecast, active weather alerts, and location info from the official National Weather Service API — the same data source behind weather.gov, as clean JSON.

Input

FieldTypeDescription
locationsarray{ "label": "optional name", "latitude": 30.2672, "longitude": -97.7431 }
forecastPeriodsinteger (default 4)How many ~12-hour forecast periods to return (4 ≈ next 2 days).
{
"locations": [
{ "label": "Austin, TX", "latitude": 30.2672, "longitude": -97.7431 }
],
"forecastPeriods": 4
}

US locations only — that's the National Weather Service's coverage area.

Output

One record per location:

{
"label": "Austin, TX",
"latitude": 30.2672,
"longitude": -97.7431,
"city": "Austin",
"state": "TX",
"timeZone": "America/Chicago",
"forecastPeriods": [
{
"name": "Today",
"temperature": 99,
"temperatureUnit": "F",
"precipitationProbability": 8,
"windSpeed": "0 to 5 mph",
"windDirection": "S",
"shortForecast": "Sunny",
"detailedForecast": "Sunny, with a high near 99. ..."
}
],
"activeAlerts": [],
"checkedAt": "2026-08-07T00:00:00.000Z"
}

How it works

Direct calls to api.weather.gov — official NOAA/National Weather Service API, US federal government data (public domain, no non-commercial restriction, no API key). No proxy, no scraping.

Coordinates only, no geocoding built in: NWS's API only accepts latitude/longitude, not place names. Look up coordinates for a city via any map service before running.

Why NWS instead of a global weather API

Global free weather APIs (e.g. Open-Meteo) restrict their free tier to non-commercial use — using one to power a paid actor would violate those terms. NWS is US-government public data with no such restriction, at the cost of US-only coverage.