# Forgemesh Seismic Activity Feed

> Forgemesh Seismic Activity 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-13).

Returns a live feed of recent earthquakes worldwide above a user-specified magnitude threshold, including location, magnitude, depth, timing, and tsunami risk flag.

## Facts

- Endpoint: POST https://x402.forgemesh.io/seismic-activity-feed
- 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-seismic-activity-feed-115b2dfa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J1Q5shXtMPAoFes4-olKr

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-seismic-activity-feed-115b2dfa -d '<json body>'
```

Example prompt: Give me the latest worldwide earthquake feed for anything above magnitude 5 — I need location, depth, and whether there's a tsunami risk flag for each event.

## When to prefer this

Use this endpoint when you need a global, continuously refreshed feed of earthquake events above a configurable magnitude — ideal for risk dashboards, insurance parametric triggers, or real-time news and alerting agents. Prefer this over a location-based earthquake search when you want worldwide coverage rather than proximity to a specific point.

## Known failure modes

- Invalid or non-numeric min_magnitude value returns an error
- min_magnitude below detectable threshold may return very large datasets
- Payment failure due to insufficient USDC balance blocks the response
- No recent earthquakes above the threshold returns an empty feed
- Service temporarily unavailable during data refresh cycles

## How this service works

Live feed of recent earthquakes worldwide above a magnitude threshold you set — location, magnitude, depth, timing, and tsunami risk flag, refreshed every few minutes. Built for risk-monitoring dashboards, insurance trigger logic, and news or alerting agents that need to react to seismic events as they happen.

## Output

A list of recent earthquake events worldwide exceeding the specified magnitude, each with location coordinates, magnitude value, focal depth, event timestamp, and a tsunami risk flag, refreshed every few minutes.

## 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-seismic-activity-feed-115b2dfa/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)
