# NASA EONET Natural Event Categories

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

Returns the list of natural event categories tracked by NASA EONET (e.g. wildfires, severe storms, volcanoes) with their IDs, titles, and descriptions.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-eonet-categories
- Price: $0.07/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-event-categories-506c58b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D_PaPxvoUCQA-5049PuwE

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-event-categories-506c58b1 -d '<json body>'
```

Example prompt: What are all the natural event categories that NASA EONET tracks — like wildfires, volcanoes, and storms — including their IDs and descriptions?

## When to prefer this

Use this endpoint when you need a structured, no-key reference list of all NASA EONET natural event category IDs and metadata — especially useful for populating filters, building dashboards, or understanding the taxonomy before querying specific events. Prefer this over scraping NASA directly since it requires no API key and is accessible via a simple paid proxy call.

## Known failure modes

- Upstream NASA EONET API unavailability causing proxy to return an error
- Proxy payment not processed correctly resulting in 402 response
- Empty or malformed response if NASA EONET changes its API structure
- Network timeout if the proxy or upstream is slow to respond

## How this service works

The categories of natural events tracked by NASA EONET, no key, such as wildfires, severe storms, and volcanoes. Returns category id, title, and description. For AI agents navigating natural-event data.

## Output

A list of natural event categories from NASA EONET, each containing a category ID, human-readable title, and a description of the event type (e.g. wildfires, severe storms, volcanoes, sea and lake ice, earthquakes, floods, landslides, snow, dust and haze, drought, manmade events).

## 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-event-categories-506c58b1/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)
