# ForgeMesh Earthquake Magnitude Tracker

> ForgeMesh Earthquake Magnitude Tracker 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-13).

Returns the latest global earthquakes filtered by minimum magnitude, including depth, epicenter location, timestamp, and tsunami-risk indicator for each event.

## Facts

- Endpoint: POST https://x402.forgemesh.io/earthquake-magnitude-tracker
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-earthquake-magnitude-tracker-b759077b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YpbpdYdMyrCjrq6eDPh-d

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-earthquake-magnitude-tracker-b759077b -d '<json body>'
```

Example prompt: Pull the latest global earthquakes with a minimum magnitude of 5 — I need the depth, epicenter coordinates, time, and whether each one has a tsunami risk flag.

## When to prefer this

Use this endpoint when you need a global list of recent seismic events above a configurable magnitude threshold, especially when tsunami-risk flagging, depth data, and epicenter coordinates are required. Prefer this over the nearby-earthquakes sibling endpoint when you want a worldwide sweep rather than a radius-based geographic query. Ideal for catastrophe monitoring dashboards, logistics rerouting systems, and content agents tracking seismic news.

## Known failure modes

- Invalid or non-numeric min_magnitude value returns an error
- No earthquakes found above the specified threshold returns an empty list
- Service temporarily unavailable if upstream USGS feed is delayed
- min_magnitude out of reasonable range (e.g. negative or above 10) may return error or empty result

## How this service works

Pull the latest global earthquakes filtered by minimum magnitude, with depth, epicenter location, timestamp, and tsunami-risk indicator for each event. For logistics rerouting, catastrophe monitoring, and content agents tracking seismic activity. Backed by public-domain government seismic data, updated continuously.

## Output

A list of recent global earthquake events filtered by the specified minimum magnitude, each including magnitude value, depth, epicenter latitude/longitude, UTC timestamp, and a tsunami-risk boolean or indicator, sourced from continuously updated public-domain government seismic data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "min_magnitude": {
   "type": "string",
   "description": "Minimum magnitude, default 4"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "type": "FeatureCollection",
   "features": [
    {
     "properties": {
      "mag": 5.2,
      "place": "south of Fiji"
     }
    }
   ]
  },
  "attribution": "U.S. Geological Survey (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-earthquake-magnitude-tracker-b759077b/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)
