# ForgeMesh Global Hazard Event Feed

> ForgeMesh Global Hazard Event 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-15).

Returns a filterable feed of worldwide open natural and manmade hazard events across 13 official categories, including wildfires, with coordinates, magnitude, and source links.

## Facts

- Endpoint: POST https://x402.forgemesh.io/wildfire-tracker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-global-hazard-event-feed-2b7282c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kIQOn8WAakE9NnpYiPcE8

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-hazard-event-feed-2b7282c7 -d '<json body>'
```

Example prompt: Fetch me the latest 30 wildfire events from the global hazard feed so I can check which are still open and map their coordinates.

## When to prefer this

Use this endpoint when you need a broad, globally-scoped feed of open natural or manmade hazard events across multiple or specific categories, especially when you need geometry (coordinates) for mapping or routing decisions. Prefer this over point-specific earthquake or volcano endpoints when you want cross-category monitoring or wildfire-specific situational awareness at scale.

## Known failure modes

- Invalid category string returns an error or empty result
- Limit parameter as non-numeric string may cause unexpected behavior
- No events in a category returns an empty list rather than an error
- Network or upstream data source unavailability returns a 5xx error
- Payment not processed (x402) results in access denied

## How this service works

Worldwide open-event feed filterable to wildfires (or any of 13 official hazard categories: wildfires, severe storms, volcanoes, sea/lake ice, earthquakes, floods, drought, dust/haze, landslides, manmade events, snow, temperature extremes, water color). Each event includes title, category, source link, and the latest geometry (coordinates, magnitude, date). For fire-risk monitoring, logistics rerouting, and global hazard-news agents.

## Output

A list of open hazard events matching the requested category (or all categories if none specified), each including event title, hazard category, a source/reference link, and the latest known geometry with coordinates, magnitude, and date — up to the specified limit.

## 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-hazard-event-feed-2b7282c7/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)
