FreeAPI.watch

NOAA National Weather Service

Official US government weather API providing forecasts, alerts, and observations for US locations. No key required.

Status
🟢 Online · 36 ms
30-day uptime
100%
Free tier
Unlimited (US only), no key, no credit card
Auth
No key required
Last 30 days

Free alternatives (live ranking)

Compare NOAA National Weather Service with…

Paid alternatives

Official docs ↗

Frequently Asked Questions

Does NOAA National Weather Service require an API key?

No, NOAA National Weather Service is freely accessible without registration or an API key.

What is NOAA National Weather Service's free tier?

Unlimited (US only), no key, no credit card

Is NOAA National Weather Service currently online?

We check NOAA National Weather Service every hour. The current status is shown at the top of this page. You can also see the 30-day uptime history in the chart above.

Implementation notes

When to use NOAA National Weather Service

NOAA's National Weather Service API is the definitive source for US weather data — forecasts, hourly conditions, active alerts, and radar station observations all from the official government source. If your app serves US users, this is the most authoritative option and has no rate limits.

Common pitfalls

Quick start (bash)

# Two-step: get grid, then forecast
GRID=$(curl -s "https://api.weather.gov/points/39.74,-97.09" | python3 -c "import sys,json; d=json.load(sys.stdin); print(d['properties']['forecast'])")
curl -s "$GRID" | python3 -c "import sys,json; d=json.load(sys.stdin); [print(p['name'],'-',p['detailedForecast'][:80]) for p in d['properties']['periods'][:3]]"

Embed this badge

Add a live status badge to your README, docs, or website.

NOAA National Weather Service status badge

Markdown

[![NOAA National Weather Service Status](https://freeapi-builder.a10ayassine.workers.dev/badge/noaa-weather.svg)](https://freeapi.watch/noaa-weather)

HTML

<a href="https://freeapi.watch/noaa-weather"><img src="https://freeapi-builder.a10ayassine.workers.dev/badge/noaa-weather.svg" alt="NOAA National Weather Service Status"/></a>

Further reading