# Suverse Space Accessible Asteroids (NASA/JPL NHATS Proxy)

> Suverse Space Accessible Asteroids (NASA/JPL NHATS 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 human-accessible near-Earth asteroids with designation, size, min delta-v, mission duration, and observation windows via a keyless NASA/JPL NHATS API proxy.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-accessible-asteroids
- 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-accessible-asteroids-nasa-jpl-nhats-proxy-20adfcbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uOUjRcGQ8qy17mfWfWQpG

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-accessible-asteroids-nasa-jpl-nhats-proxy-20adfcbd -d '<json body>'
```

Example prompt: Can you pull the list of human-accessible near-Earth asteroids from the NASA NHATS dataset — I want to see their designations, sizes, minimum delta-v values, and available observation windows so I can shortlist targets for a crewed mission study?

## When to prefer this

Choose this endpoint when you need programmatic, keyless access to NASA/JPL NHATS near-Earth asteroid data for mission planning or research without managing NASA API credentials. It is ideal for AI agents performing space mission feasibility studies, asteroid accessibility analysis, or scheduling observation campaigns, and avoids the overhead of registering for a NASA API key directly.

## Known failure modes

- Upstream NASA/JPL NHATS API unavailable or rate-limited, returning a proxy error
- Empty result set if no asteroids match extremely restrictive filter parameters
- Malformed POST body or incorrect bodyType causing a 400 bad request
- Payment not processed correctly via x402 protocol, resulting in 402 Payment Required
- Stale data if NASA NHATS database has not been recently updated

## How this service works

Human-accessible near-Earth asteroids: designation, size, min delta-v, mission duration, observation windows. Keyless NASA/JPL NHATS API. For mission-planning agents.

## Output

A structured list of near-Earth asteroids from NASA/JPL's NHATS dataset, each including the asteroid's designation, estimated size, minimum delta-v required for a human mission, total mission duration, and available observation windows for mission planning purposes.

## 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-accessible-asteroids-nasa-jpl-nhats-proxy-20adfcbd/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)
