# NASA EONET Natural Events via Suverse Proxy

> NASA EONET Natural Events via Suverse Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches current worldwide natural events (wildfires, storms, volcanoes, floods) from NASA EONET without requiring an API key

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-eonet-events
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nasa-eonet-natural-events-via-suverse-proxy-35141f7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L_kHmboanZBx4_RdxMJ2e

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 nasa-eonet-natural-events-via-suverse-proxy-35141f7f -d '<json body>'
```

Example prompt: Pull the latest natural disaster events from NASA EONET — I want to see all active wildfires, volcanoes, storms, and floods happening right now with their locations and dates.

## When to prefer this

Choose this endpoint when you need keyless, no-auth access to NASA EONET natural event data aggregated through a proxy. Prefer this over direct NASA EONET API calls when you want a simplified interface with per-call micropayment pricing via x402. Compared to GDACS (also available on this proxy), NASA EONET focuses specifically on earth-observation-validated events with precise coordinates and is particularly strong on wildfires, storms, and volcanic activity.

## Known failure modes

- NASA EONET upstream outage causes empty or error response
- No events currently active in a specific category returns an empty list
- Network timeout if NASA data feed is slow
- Malformed POST body may result in a 400 error
- Stale data if NASA EONET feed has not updated recently

## How this service works

Open natural events worldwide from NASA EONET, no key, including wildfires, severe storms, volcanoes, and floods. Returns each event with title, category, date, and coordinates. For AI agents monitoring natural hazards and earth observation.

## Output

A list of natural event records sourced from NASA EONET, each containing the event title, category (e.g. wildfire, volcano, severe storm, flood), date of the event, and geographic coordinates (latitude/longitude) of the event location.

## 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/nasa-eonet-natural-events-via-suverse-proxy-35141f7f/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)
