# x402.forgemesh.io Solar Storm Events API

> x402.forgemesh.io Solar Storm Events API is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the last 30 days of NOAA solar flare events including class, begin/peak/end times, and source region for space weather monitoring

## Facts

- Endpoint: POST https://x402.forgemesh.io/space-solar-storms
- 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/x402-forgemesh-io-solar-storm-events-api-b1a73420
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aHdot_4buOL-Ihys55_Fm

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-solar-storm-events-api-b1a73420 -d '<json body>'
```

Example prompt: Pull the last 30 days of solar flare events — including each flare's class, begin, peak, and end times, and source region — so I can assess whether recent space weather could be degrading our GPS and satellite communications.

## When to prefer this

Use this endpoint when you need structured, machine-readable solar flare event data for the past 30 days with flare classification and timing detail. Prefer this over manual NOAA page scraping or generic space weather feeds when you need consistent JSON output for infrastructure risk assessment, aviation communications planning, or science/research agents tracking solar activity patterns.

## Known failure modes

- Payment failure: insufficient USDC balance or x402 payment header missing/malformed
- Data unavailability: NOAA upstream data temporarily unavailable
- Stale cache: data may be up to 3 hours old, recent flares may not appear
- Empty result: no solar flare events recorded in the last 30 days (rare but possible during solar minimum)
- Timeout: upstream NOAA source slow to respond

## How this service works

Solar storm API: the last 30 days of solar flare events — class (A/B/C/M/X), begin/peak/end times, and source region — the space weather that degrades GPS, satellite communications, and power grids. Use for infrastructure-risk monitoring, aviation/comms planning, and science agents. Cached 3 hours.

## Output

A list of solar flare events from the past 30 days, each with flare classification (A/B/C/M/X), begin time, peak time, end time, and the solar source region — sourced from NOAA and cached for up to 3 hours.

## 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": [
   {
    "beginTime": "2026-07-10T03:12Z",
    "classType": "M1.2",
    "sourceLocation": "N15W40"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-forgemesh-io-solar-storm-events-api-b1a73420/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)
