# ForgeMesh Space Weather Advisory Digest

> ForgeMesh Space Weather Advisory Digest 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 a digest of official space-weather advisories from the past ~week, including solar flares, CMEs, geomagnetic storms, and radiation events with type, issue time, source link, and full message text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/solar-activity-digest
- 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/forgemesh-space-weather-advisory-digest-532dbc49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AWzdHsKJNVB_w_ZEmGnag

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-space-weather-advisory-digest-532dbc49 -d '<json body>'
```

Example prompt: Pull me the latest space weather advisory digest — I want to see all the official solar flare, CME, geomagnetic storm, and radiation event alerts issued over the past week, with their types, timestamps, and full message text.

## When to prefer this

Use this endpoint when you need a consolidated, human-readable digest of all recent official space-weather advisories (solar flares, CMEs, geomagnetic storms, radiation) covering roughly the past week, especially for automated newsletter generation, infrastructure-risk briefings, or monitoring agents that need historical context rather than a single real-time reading.

## Known failure modes

- No advisories in the time window — returns empty list if no events occurred
- Upstream space weather data source unavailable — may return error or stale data
- Payment not processed correctly — 402 response requiring valid x402 payment
- Malformed request body — returns validation error

## How this service works

Space weather notification digest: the official space-weather advisories issued over roughly the last week — type, issue time, source link, and full message text covering solar flares, CMEs, geomagnetic storms, and radiation events. For infrastructure-risk briefings and space-weather newsletter agents.

## Output

A structured list of official space-weather advisories from approximately the last 7 days, each containing the advisory type (e.g. solar flare, CME, geomagnetic storm, radiation event), issue timestamp, a source link, and the full advisory message text — suitable for infrastructure-risk briefings or newsletter generation.

## 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-space-weather-advisory-digest-532dbc49/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)
