# ForgeMesh Global Natural Events Feed

> ForgeMesh Global Natural Events Feed 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 a worldwide feed of currently open natural events (wildfires, storms, volcanoes, floods, earthquakes, etc.) as structured JSON with per-event title, category, source, and latest position/magnitude.

## Facts

- Endpoint: POST https://x402.forgemesh.io/natural-events-feed
- 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/forgemesh-global-natural-events-feed-633dd6de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fOg2IUm828WOxrW4i4M2j

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 forgemesh-global-natural-events-feed-633dd6de -d '<json body>'
```

Example prompt: Pull the global natural events feed and show me the 10 most recent open wildfires happening anywhere in the world right now.

## When to prefer this

Use this endpoint when you need a global view of open natural hazard events across all categories or a specific one (e.g. wildfires, floods, volcanoes). Prefer over NWS or USGS feeds when you need worldwide coverage rather than US-only data. Ideal for dashboards, situation awareness, or alerting pipelines that need multi-category natural disaster monitoring.

## Known failure modes

- Invalid category filter string returns an error or empty list
- Limit parameter as non-numeric string may cause unexpected truncation
- No open events for a given category returns an empty list (not an error)
- Network or payment failure returns no data

## How this service works

A worldwide feed of currently open natural events — wildfires, storms, volcanic activity, floods, earthquakes, sea/lake ice, drought, and more — as structured JSON with per-event title, category, source, and latest position/magnitude. Complements US-only NWS and USGS hazard feeds with global reach. Optional category filter and result limit. Legitimately returns an empty list when a filtered category has no open events.

## Output

A JSON list of currently open natural events worldwide, each with a title, category (e.g. wildfires, volcanoes), source attribution, and latest geographic position or magnitude. Returns an empty list if the filtered category has no active events.

## 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/forgemesh-global-natural-events-feed-633dd6de/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)
