# Space Weather Brief - LLM Digest

> Space Weather Brief - LLM Digest is a paid API for AI agents from oracles-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an LLM-written narrative digest summarizing the strongest recent space-weather events within a configurable time window

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/space-weather/brief
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/space-weather-brief-llm-digest-61682a3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MdVdlhsH1inBHwj-3d9W6

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 space-weather-brief-llm-digest-61682a3e
```

Example prompt: Give me an LLM-written space weather digest covering the strongest events since January 1, 2025 — I want a narrative summary of what's been going on with solar flares and geomagnetic storms.

## When to prefer this

Choose this endpoint when you need a human-readable, LLM-narrated summary of space weather rather than raw structured alert data. Prefer this over the sibling NOAA SWPC alerts endpoint when the goal is to communicate space weather trends to a non-technical audience or generate a concise briefing. Best for periodic digest use cases (daily/weekly roundups) rather than real-time monitoring.

## Known failure modes

- No significant events in the requested window may yield a minimal or empty brief
- Invalid ISO 8601 datetime format for 'since' parameter returns a validation error
- Payment failure (x402) if USDC balance is insufficient
- Service unavailable if upstream NOAA SWPC data is unreachable
- Very long time windows may produce less focused or overly broad digests

## How this service works

An LLM-written digest of the strongest recent space-weather events.

## Output

Returns a JSON object with a 'brief' field containing an LLM-authored prose summary of the most significant space-weather events in the window, a 'generatedBy' field indicating whether it was LLM or template generated, and 'basedOnChanges' indicating how many underlying events the digest is based on.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Window start (default: last 30 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "brief": {
       "type": "string"
      },
      "generatedBy": {
       "enum": [
        "llm",
        "template"
       ],
       "type": "string"
      },
      "basedOnChanges": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/space-weather-brief-llm-digest-61682a3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from oracles-production.up.railway.app](https://www.zero.xyz/host/oracles-production.up.railway.app/llms.txt)
