# ADH Space Weather Intelligence

> ADH Space Weather Intelligence is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current space weather data including geomagnetic storm status, Kp index, solar X-ray flares, and NOAA alerts in a processed, agent-ready format.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/space-weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-space-weather-intelligence-53ccbec6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tgHzkIK0p6yPyzcg76UI8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability adh-space-weather-intelligence-53ccbec6
```

Example prompt: What are the current space weather conditions — is there a geomagnetic storm active, what's the latest Kp index, and have there been any recent solar flares or NOAA alerts?

## When to prefer this

Choose this endpoint when you need processed, agent-ready space weather intelligence sourced from NOAA-SWPC without having to parse raw NOAA feeds yourself. Prefer it over direct NOAA API calls when you want entity-resolved, timestamped data with storm severity flags and alert summaries already extracted. Best for agents monitoring satellite operations, aviation, power grid risk, or any use case where geomagnetic storm status needs to be checked programmatically at low cost.

## Known failure modes

- Upstream NOAA-SWPC API unavailable — may return stale or empty data
- Payment not settled via x402 — endpoint returns 402 Payment Required
- No recent space weather events — alerts_recent may be empty
- Network timeout if upstream data source is slow to respond

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns a JSON object with raw Kp index time series, the latest Kp reading, a storm flag (e.g. 'quiet', 'active', 'storm'), total NOAA alert count, recent alert messages with product IDs and timestamps, the latest X-ray flare classification and intensity metrics, a human-readable note about impacts, data source attribution, and a collection timestamp.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "kp_index": [
    {
     "Kp": 1,
     "time_tag": "2026-08-02T06:00:00",
     "a_running": 4,
     "station_count": 8
    },
    {
     "Kp": 1,
     "time_tag": "2026-08-02T06:00:00",
     "a_running": 4,
     "station_count": 8
    }
   ],
   "kp_latest": {
    "Kp": 1.33,
    "time_tag": "2026-08-09T15:00:00",
    "a_running": 5,
    "station_count": 8
   },
   "storm_flag": "quiet",
   "alerts_total": 87,
   "alerts_recent": [
    {
     "message": "Space Weather Message Code: WATA20\r\nSerial Number: 1119\r\nIssue Time: 2026 Aug 09 1338 UTC\r\n\r\nWATCH: Geomagnetic Storm Ca",
     "product_id": "A20F",
     "issue_datetime": "2026-08-09 13:38:09.543"
    },
    {
     "message": "Space Weather Message Code: WATA20\r\nSerial Number: 1119\r\nIssue Time: 2026 Aug 09 1338 UTC\r\n\r\nWATCH: Geomagnetic Storm Ca",
     "product_id": "A20F",
     "issue_datetime": "2026-08-09 13:38:09.543"
    }
   ],
   "xray_flare_latest": [
    {
     "end_time": "2026-08-09T18:08:00Z",
     "max_time": "2026-08-09T18:06:00Z",
     "time_tag": "2026-08-09T18:37:00Z",
     "end_class": "C1.0",
     "max_class": "C1.1",
     "max_ratio": 0.1169772387711945,
     "satellite": 18,
     "begin_time": "2026-08-09T18:01:00Z",
     "max_xrlong": 0.000001144777456829615,
     "begin_class": "C1.0",
     "current_class": "B4.6",
     "current_ratio": 0.02036214859660617,
     "max_ratio_time": "2026-08-09T18:02:48Z",
     "current_int_xrlong": 0.0006411020876839757
    }
   ]
  },
  "note": "Geomagnetic storms disrupt satellites, GPS, HF radio and power grids.",
  "source": "noaa-swpc",
  "data_type": "航空航天",
  "collected_at": "2026-08-09T18:40:12Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-space-weather-intelligence-53ccbec6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
