Active U.S. National Weather Service alerts normalized into compact, decision-ready JSON events.
https://data06.152-53-122-166.nip.io/data06X-API-Key: YOUR_KEY or a Bearer token.curl -H "X-API-Key: YOUR_KEY" \ "https://data06.152-53-122-166.nip.io/data06/v1/events?min_score=80&limit=10"
import requests
url = "https://data06.152-53-122-166.nip.io/data06/v1/events"
r = requests.get(url, headers={"X-API-Key": "YOUR_KEY"}, params={"min_score": 80})
r.raise_for_status()
for event in r.json()["events"]:
print(event["t"], event["score"], event["actions"])
const r = await fetch(BASE + "/v1/events?min_score=80", {
headers: {"X-API-Key": "YOUR_KEY"}
});
const {events} = await r.json();
GET /v1/events — filtered compact/full eventsGET /v1/schema — field contractGET /v1/account/usage — plan and quota usageGET /health — freshness and service healthFilters: min_score, event_type, area, severity, active_only, compact, limit.
Interactive OpenAPI documentation · Live status dashboard
Operational decision support only. NWS remains the authoritative warning source.