DATA-06 Agent Weather Decision API

Active U.S. National Weather Service alerts normalized into compact, decision-ready JSON events.

Base URL
https://data06.152-53-122-166.nip.io/data06
Authentication
Send X-API-Key: YOUR_KEY or a Bearer token.

Quick start

curl -H "X-API-Key: YOUR_KEY" \
"https://data06.152-53-122-166.nip.io/data06/v1/events?min_score=80&limit=10"

Python

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"])

JavaScript

const r = await fetch(BASE + "/v1/events?min_score=80", {
  headers: {"X-API-Key": "YOUR_KEY"}
});
const {events} = await r.json();

Endpoints

Filters: 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.