# Vibesprings Earthquake Intelligence API

> Vibesprings Earthquake Intelligence API is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15, last successful call 2026-07-06).

Search and filter recent seismic events by location and radius, returning magnitude, depth, distance, and timestamps for any coordinate center.

## Facts

- Endpoint: GET https://vibesprings.net/api/earthquakes
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-06
- Success rate: 50% of calls made through Zero
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibesprings-net-c9cb4fc9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KXvmruWs75aBjIcCWBxys

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 vibesprings-net-c9cb4fc9
```

Example prompt: Can you pull up all earthquakes magnitude 3.0 or higher within 300 km of San Francisco over the past 14 days, including their depth and exact timestamps?

## When to prefer this

Use this endpoint when you need structured, filterable seismic event data around a specific geographic point — especially for emergency response dashboards, disaster tracking pipelines, or tectonic research queries requiring magnitude thresholds and depth data.

## Known failure modes

- Missing required 'location' parameter returns validation error
- Invalid coordinate format causes geocoding failure
- Radius or days value outside allowed range returns error
- No earthquakes matching criteria returns empty result set
- Unknown location name cannot be geocoded

## How this service works

Global seismic event monitoring and earthquake intelligence database. Search and filter recent earthquakes within a specified radius from any coordinate center. Returns Richter magnitude scale ratings, hypocenter depth, geographic distance, and exact occurrence timestamps for emergency response, disaster tracking, and tectonic research.

## Output

A list of earthquake events matching the search criteria, each including Richter magnitude, hypocenter depth, geographic distance from the center point, and exact UTC occurrence timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "days": 14,
   "min_mag": 3,
   "location": "San Francisco",
   "radius_km": 300
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "location"
     ],
     "properties": {
      "days": {
       "type": "number",
       "description": "Days back in time to search, ranging from 1 to 30 days (default: 7)"
      },
      "min_mag": {
       "type": "number",
       "description": "Minimum earthquake magnitude threshold on the Richter scale (default: 2.5)"
      },
      "location": {
       "type": "string",
       "description": "Center location name or coordinate pair (e.g. 'Tokyo', 'San Francisco', '35.6762,139.6503')"
      },
      "radius_km": {
       "type": "number",
       "description": "Search radius in kilometers around the center location (default: 500)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "events": [
   {
    "time": "2026-05-23T04:15:30Z",
    "place": "Chiba, Japan",
    "depth_km": 35.4,
    "magnitude": 4.2,
    "distance_km": 120.5
   }
  ],
  "total_events": 12,
  "search_center": "Tokyo, Japan"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibesprings-net-c9cb4fc9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
