# Global Natural Event Tracker (x402.forgemesh.io)

> Global Natural Event Tracker (x402.forgemesh.io) is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns all currently open natural disaster and hazard events worldwide — wildfires, storms, earthquakes, floods, volcanoes, and more — with title, category, location, and magnitude as normalized JSON.

## Facts

- Endpoint: POST https://x402.forgemesh.io/global-disaster-events
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/global-natural-event-tracker-x402-forgemesh-io-32733b47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ALkMn5Z5K1EfrUoMl22X3

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 global-natural-event-tracker-x402-forgemesh-io-32733b47 -d '<json body>'
```

Example prompt: Show me all currently open natural disaster events worldwide — up to 30 of them — and filter it to just wildfires.

## When to prefer this

Use this endpoint when you need a global view of currently active natural disaster events across any category. Prefer it over US-only hazard feeds (e.g. USGS, NWS) when worldwide coverage is required, or when you need multiple disaster types in a single normalized response rather than querying separate category-specific APIs.

## Known failure modes

- Invalid category string returns an error or empty result — must use one of the documented enum values
- Upstream NASA EONET feed unavailability causes fetch failure
- Limit parameter passed as non-string or non-numeric string may cause unexpected results
- No events of the requested category currently open returns an empty array

## How this service works

Global natural-event tracker: every currently open natural event worldwide — wildfires, severe storms, volcanic activity, sea/lake ice, earthquakes, floods, drought, landslides, and more — with title, category, location, and magnitude data, as normalized JSON. Complements US-only hazard feeds with worldwide coverage. Optional category filter.

## Output

A normalized JSON array of currently open natural events globally, each with a title, category (e.g. wildfires, earthquakes, severeStorms), geographic location coordinates, and magnitude data where available. Covers all active events or a filtered subset by category.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "string",
   "description": "Maximum number of events to return, default 20"
  },
  "category": {
   "type": "string",
   "description": "Optional category filter: drought, dustHaze, earthquakes, floods, landslides, manmade, seaLakeIce, severeStorms, snow, tempExtremes, volcanoes, waterColor, or wildfires. Omit for all open events."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "title": "EONET Events",
   "events": [
    {
     "id": "EONET_21374",
     "title": "Wildfire 0460 HOPKIN, Gilliam, Oregon",
     "sources": [
      {
       "id": "IRWIN",
       "url": "https://irwin.doi.gov/observer/incidents/2026-ORPRD-000460"
      }
     ],
     "geometry": [
      {
       "date": "2026-07-16T08:04:00Z",
       "coordinates": [
        -120.24295,
        45.336333
       ],
       "magnitudeUnit": "acres",
       "magnitudeValue": 2500
      }
     ],
     "categories": [
      {
       "id": "wildfires",
       "title": "Wildfires"
      }
     ]
    }
   ]
  },
  "attribution": "NASA EONET (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-natural-event-tracker-x402-forgemesh-io-32733b47/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
