# x402.forgemesh.io CME Watch — Space Weather Notifications

> x402.forgemesh.io CME Watch — Space Weather Notifications 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-15).

Returns the latest NOAA space-weather alerts and notifications (CME, geomagnetic storms, solar radiation, weekly summaries) as structured JSON covering approximately the last 7 days.

## Facts

- Endpoint: POST https://x402.forgemesh.io/cme-watch
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-forgemesh-io-cme-watch-space-weather-notifications-4c491989
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dcW1SZB6q1aF55w_uO6Ka

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 x402-forgemesh-io-cme-watch-space-weather-notifications-4c491989 -d '<json body>'
```

Example prompt: Pull the latest space weather alerts — I want to see any CME warnings, geomagnetic storm notices, and solar radiation storm alerts from the past week as structured data.

## When to prefer this

Choose this endpoint when you need structured, machine-readable space-weather alerts without scraping NOAA directly, especially for infrastructure-risk monitoring agents (power grids, satellite operators), science newsletters needing recent bulletins, or dashboards that need to display CME/geomagnetic storm/solar radiation warnings with timestamps and full text.

## Known failure modes

- Upstream NOAA SWPC data unavailable — may return empty array or error if source feed is down
- Payment failure — x402 micropayment of $0.005 USDC not completed, request rejected
- No notifications in period — returns empty array if no alerts were issued in the last 7 days
- Rate limiting or network timeout from the forgemesh proxy layer

## How this service works

The latest official space-weather notifications — coronal mass ejection alerts, geomagnetic storm warnings, solar radiation storms, and weekly summary reports — as structured JSON with type, issue time, and full text for each. Covers roughly the last 7 days by default. For infrastructure-risk agents, science newsletters, and space-weather monitoring dashboards.

## Output

A JSON array of space-weather notification objects, each containing a notification type (e.g. CME alert, geomagnetic storm warning, solar radiation storm, weekly summary), an issue timestamp, and the full text of the notification, covering approximately the last 7 days of NOAA SWPC bulletins.

## 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/x402-forgemesh-io-cme-watch-space-weather-notifications-4c491989/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)
