# x402.forgemesh.io Space Weather Events API

> x402.forgemesh.io Space Weather 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 recent solar flare events with class, peak time, and source region, normalized for infrastructure-risk and communications disruption assessment.

## Facts

- Endpoint: POST https://x402.forgemesh.io/space-weather-events
- 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-space-weather-events-api-fe843b5b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WFb2QxY_01CEMxqAO_M_I

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-space-weather-events-api-fe843b5b -d '<json body>'
```

Example prompt: Pull the latest solar flare events from the space weather API — I need each flare's class, peak time, and source region so I can assess risk to our HF radio and GPS systems.

## When to prefer this

Choose this endpoint when you need a structured, normalized feed of recent solar flare events specifically for assessing disruption risk to GPS, satellite links, or HF radio. It is purpose-built for infrastructure and communications risk agents rather than general astronomy or raw NOAA data access. Prefer it when you need machine-readable JSON with class, peak time, and source region fields ready for downstream risk scoring.

## Known failure modes

- No recent solar flare events available — returns empty array or minimal dataset
- Upstream space weather data source unavailable — may return 503 or stale data
- Malformed POST body — returns 400 with schema validation error
- Payment not processed correctly via x402 protocol — returns 402 Payment Required
- Rate limit exceeded — returns 429 Too Many Requests

## How this service works

Space weather events API: recent solar flares with class, peak time, and source region — the events that disrupt GPS accuracy, satellite links, and HF radio. Normalized JSON for infrastructure-risk and comms agents.

## Output

A normalized JSON array of recent solar flare events, each containing the flare class (e.g. X1.5, M3.2), peak event time, and source region on the solar disk, formatted for use in infrastructure-risk and communications-disruption analysis pipelines.

## 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-space-weather-events-api-fe843b5b/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)
