# Suverse Space Impact Risk – NASA/JPL Sentry Proxy

> Suverse Space Impact Risk – NASA/JPL Sentry Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns the asteroid impact-risk list from NASA/JPL Sentry, including designation, impact probability, Palermo scale, diameter, magnitude, and risk years — no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-impact-risk
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-space-impact-risk-nasa-jpl-sentry-proxy-feaad2ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IQgKujFYVtJR7tG3kINqD

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 suverse-space-impact-risk-nasa-jpl-sentry-proxy-feaad2ac -d '<json body>'
```

Example prompt: Pull the latest asteroid impact-risk list from NASA's Sentry system — I need each asteroid's designation, impact probability, Palermo scale score, diameter, magnitude, and the years it poses a risk.

## When to prefer this

Choose this endpoint when you need programmatic, keyless access to NASA/JPL Sentry asteroid impact-risk data and do not want to manage an API key or deal with NASA rate limits directly. It is ideal for planetary-defense agents, space-science dashboards, and automated monitoring workflows that need Palermo scale and impact-probability data without authentication overhead. Prefer it over direct NASA/JPL calls when operating in an agentic environment that already handles x402 micropayments.

## Known failure modes

- Upstream NASA/JPL Sentry API unavailable — proxy may return 502 or timeout
- Empty or stale dataset if NASA Sentry data has not been recently updated
- x402 payment not processed correctly — request blocked before reaching proxy
- POST body malformed — returns 400 if required input envelope is missing
- Rate-limiting by the proxy if too many calls are made in quick succession

## How this service works

Asteroid impact-risk list: designation, impact probability, Palermo scale, diameter, magnitude, risk years. Keyless NASA/JPL Sentry API. For planetary-defense agents.

## Output

Returns a structured list of near-Earth asteroids from NASA/JPL Sentry with fields including: asteroid designation, impact probability, Palermo scale value, estimated diameter, absolute magnitude (H), and the calendar years associated with potential impact risk.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-space-impact-risk-nasa-jpl-sentry-proxy-feaad2ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
