# StatePulse Space Weather Live Telemetry

> StatePulse Space Weather Live Telemetry is a paid API for AI agents from statepulse-api.hahavoid0.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns real-time space weather status including geomagnetic Kp index, solar activity level, and storm alert flag

## Facts

- Endpoint: POST https://statepulse-api.hahavoid0.workers.dev/environment/space-weather
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/statepulse-space-weather-live-telemetry-e39bdcae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uqFKHxKvKaBBouP954Xgb

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 statepulse-space-weather-live-telemetry-e39bdcae -d '<json body>'
```

Example prompt: What's the current space weather situation — is there a geomagnetic storm alert active and what's the Kp index right now?

## When to prefer this

Choose this endpoint when an agent needs real-time geomagnetic or solar storm status without maintaining an API key, especially in pay-per-call or ad-hoc contexts. Useful when checking aurora likelihood, satellite communication risk, or power grid vulnerability to solar events. The x402 USDC micropayment model makes it suitable for autonomous agent workflows that need on-demand space weather data.

## Known failure modes

- Upstream space weather data source unavailable — may return unsupported or low confidence result
- Network timeout on Cloudflare Worker — HTTP 5xx
- Payment not processed via x402 — request rejected with 402 Payment Required
- Data feed temporarily stale — confidence may degrade to 'low' or 'medium'

## How this service works

Retrieves the current planetary K-Index and active solar storms from NOAA SWPC. Matches: space weather solar storm alert, planetary k-index monitor, geomagnetic activity tracker, solar flare satellite warnings, coronal mass ejection tracking.

## Output

A JSON object with a 'result' field containing: 'status' (e.g. 'Quiet'), 'kp_index' (numeric, e.g. 3.2), and 'storm_alert' (boolean). Also includes 'supported' and 'confidence' fields indicating data reliability.

## 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"
    },
    "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": {
  "result": {
   "status": "Quiet",
   "kp_index": 3.2,
   "storm_alert": false
  },
  "supported": true,
  "confidence": "high"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/statepulse-space-weather-live-telemetry-e39bdcae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from statepulse-api.hahavoid0.workers.dev](https://www.zero.xyz/host/statepulse-api.hahavoid0.workers.dev/llms.txt)
