# Suverse NEO Tracking – NASA/JPL Scout Proxy

> Suverse NEO Tracking – NASA/JPL Scout 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 newly discovered near-Earth object (NEO) candidates with sky position, magnitude, NEO and hazard scores, and observation arc data, sourced from the NASA/JPL Scout API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-neo-tracking
- 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-neo-tracking-nasa-jpl-scout-proxy-2d38574e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L79IKB15-P5or_ThnMy63

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-neo-tracking-nasa-jpl-scout-proxy-2d38574e -d '<json body>'
```

Example prompt: Pull the latest near-Earth object candidates from the NASA/JPL Scout database — I want their sky positions, magnitudes, NEO scores, hazard scores, and observation arcs for any newly found objects.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call access to NASA/JPL Scout NEO candidate data — especially useful for sky-survey agents, planetary defense pipelines, or observatories that don't want to manage NASA API credentials. Prefer this over direct NASA API access when operating in an agentic context that supports x402 micropayments.

## Known failure modes

- Empty result set if no new NEO candidates have been discovered recently
- Upstream NASA/JPL Scout API unavailability causing timeout or error response
- Malformed POST body returning a 400-level error
- Payment failure via x402 protocol blocking access
- Rate limiting if the underlying Scout API throttles requests

## How this service works

Newly found near-Earth object candidates with sky position, magnitude, NEO and hazard scores, observation arc. Keyless NASA/JPL Scout API. For sky-survey agents.

## Output

A list of newly discovered near-Earth object candidates, each including sky coordinates (RA/Dec), apparent magnitude, NEO score, hazard score, and observation arc length, sourced in real-time from the NASA/JPL Scout system.

## 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-neo-tracking-nasa-jpl-scout-proxy-2d38574e/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)
