# ForgeMesh Geomagnetic Storm Alerts Feed

> ForgeMesh Geomagnetic Storm Alerts Feed is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a rolling ~7-day digest of official space-weather advisories including geomagnetic storm watches/warnings, solar radiation storm alerts, and other NOAA/SWPC notifications with full advisory text and metadata.

## Facts

- Endpoint: POST https://x402.forgemesh.io/geomagnetic-storm-alerts
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-geomagnetic-storm-alerts-feed-ce5dd1e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BrEuKnK7KDr0hykkaWHum

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 forgemesh-geomagnetic-storm-alerts-feed-ce5dd1e1 -d '<json body>'
```

Example prompt: Pull the latest space-weather advisories from the past week — I need to see any geomagnetic storm watches or warnings and solar radiation storm alerts so I can assess risk for our grid operations.

## When to prefer this

Use this endpoint when you need the human-readable advisory layer of space-weather notifications — full text, timestamps, and source links — rather than raw numeric event data. Ideal for grid-operator risk dashboards, aviation and communications planners, or alerting agents that need to surface official NOAA watch/warning language to users. Prefer this over raw sensor feeds when the advisory narrative and official classification (watch vs. warning vs. advisory) matter.

## Known failure modes

- No active alerts in the window returns an empty list rather than an error
- Payment failure (402) if x402 micropayment not completed before request
- Upstream NOAA/SWPC feed unavailability may cause stale or missing data
- Malformed POST body returns 400 validation error
- Rate limiting if called excessively in a short window

## How this service works

Rolling digest of official space-weather notifications from roughly the past week — geomagnetic storm watches/warnings, solar radiation storms, and other advisories — with message type, issue timestamp, source link, and full advisory text. For grid-operator risk monitoring, aviation/comms planning, and alerting agents that want the human-readable advisory layer, not just raw event data.

## Output

A rolling digest of official space-weather notifications from approximately the past 7 days, including message type (watch, warning, advisory), issue timestamp, full human-readable advisory text, and a source link back to the original NOAA/SWPC notification for each alert.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "messageID": "20260715-7D-001",
    "messageURL": "https://kauai.ccmc.gsfc.nasa.gov/DONKI/view/Alert/47605/1",
    "messageBody": "Weekly Space Weather Summary Report for July 08, 2026 - July 14, 2026...",
    "messageType": "Report",
    "messageIssueTime": "2026-07-15T21:11Z"
   }
  ],
  "attribution": "NASA DONKI (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-geomagnetic-storm-alerts-feed-ce5dd1e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
