# Space Weather Status Lookup

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

Retrieves stored detail for a single tracked space-weather product or lists all tracked space-weather entities.

## Facts

- Endpoint: GET https://oracles-production.up.railway.app/v1/space-weather/status
- 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/space-weather-status-lookup-1e851e8f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_88iprjHAoZNLZsrafMq--

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-status-lookup-1e851e8f
```

Example prompt: What's the current status for the space-weather product with ID 'kp-index'? Pull the stored detail from the space weather oracle.

## When to prefer this

Use this endpoint when you need to retrieve stored detail about a specific space-weather product or enumerate all tracked space-weather entities from this oracle service. Prefer this over live NASA/NOAA APIs when you want a preprocessed, pay-per-call oracle abstraction with consistent schema.

## Known failure modes

- Unknown entity ID returns empty result or 404
- Omitting required 'input' wrapper causes schema validation error
- Stale data if the underlying space-weather feed has not been refreshed recently
- Rate limiting or payment failure if the x402 payment is not properly attached

## How this service works

Stored detail for a single space-weather product.

## Output

Returns a detailed entity object for the requested space-weather product (e.g. geomagnetic storm index, solar wind data), including its stored attributes; if no ID is provided, returns a list of all tracked space-weather entities.

## 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": {
      "id": {
       "type": "string",
       "description": "entityId to look up; omit to list tracked entities"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "entity": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/space-weather-status-lookup-1e851e8f/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)
