# x402.forgemesh.io Solar Flare & GPS Disruption Alerts

> x402.forgemesh.io Solar Flare & GPS Disruption Alerts 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 activity over the past 30 days, classified by intensity with timing and source region, to identify causes of GPS drift, satellite comm glitches, and grid instability.

## Facts

- Endpoint: POST https://x402.forgemesh.io/gps-disruption-alerts
- 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-flare-gps-disruption-alerts-ec02a768
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iNdS8wU7BD0Ws1BajK3Kh

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-flare-gps-disruption-alerts-ec02a768 -d '<json body>'
```

Example prompt: Pull up the recent solar flare activity from the past 30 days — I want to see flare intensities, timing, and source regions so I can figure out if space weather is behind the GPS drift and satellite issues we've been seeing.

## When to prefer this

Choose this endpoint when you need a recent historical window (30 days) of solar flare data classified by intensity and source region, specifically for correlating space weather events with observed infrastructure anomalies like GPS errors, satellite link degradation, or grid fluctuations. Prefer this over real-time solar APIs when a summarized, cached, ready-to-use event list is sufficient and cost-efficiency matters.

## Known failure modes

- Payment not received or x402 payment handshake fails — request rejected with 402 status
- Cache stale or upstream solar data source unavailable — may return older data or error
- Empty body or malformed JSON in POST body — may return 400 or unexpected response
- No significant flare events in the window — returns empty or minimal event list

## How this service works

Recent solar flare activity over the past 30 days, classified by intensity with timing and source region for each event — the underlying cause of GPS drift, satellite communication glitches, and grid instability. Useful for infrastructure monitoring and risk-planning agents that want early signal on space weather impact. Cached 3 hours.

## Output

A cached (3-hour) list of solar flare events from the past 30 days, each with intensity classification (e.g. A, B, C, M, X class), timestamp, and solar source region — enabling correlation with observed GPS drift, satellite communication anomalies, or power grid instability.

## 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-flare-gps-disruption-alerts-ec02a768/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)
