# Suverse Space Fireballs — NASA/JPL Fireball Proxy

> Suverse Space Fireballs — NASA/JPL Fireball 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-15).

Retrieves recent atmospheric fireball (bolide) event data from NASA/JPL including date, location, energy, altitude, and velocity, without requiring a NASA API key.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-space-fireballs
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-space-fireballs-nasa-jpl-fireball-proxy-41ec83bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j_VapjaeWPMhyJ_7OSqL5

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-fireballs-nasa-jpl-fireball-proxy-41ec83bb -d '<json body>'
```

Example prompt: Can you pull up the most recent atmospheric fireball events from the NASA JPL database — I want to see dates, locations, impact energy, and velocities for bolides detected lately?

## When to prefer this

Choose this endpoint when you need keyless access to NASA/JPL fireball event data without registering for a NASA API key. Ideal for agents that need bolide/fireball data on demand with a simple pay-per-call model. Prefer this over direct NASA API calls when you want a managed proxy with predictable pricing and no credential management.

## Known failure modes

- Payment failure if x402 USDC payment of $0.08 is not included or rejected
- Upstream NASA/JPL API unavailability causing proxy to return an error
- Empty result set if no recent fireball events are in the NASA database
- Malformed request body causing a 400 error
- Timeout if NASA upstream is slow to respond

## How this service works

Recent atmospheric fireball events: date, radiated energy, impact energy, lat, lon, altitude, velocity. Keyless NASA/JPL Fireball API. For agents tracking bolides.

## Output

Returns structured data on recent atmospheric fireball events as recorded by NASA/JPL CNEOS, including event date/time, geographic coordinates (latitude and longitude), altitude, velocity, radiated energy, and impact energy for each detected bolide.

## 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-fireballs-nasa-jpl-fireball-proxy-41ec83bb/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)
