Earthquake activity check, deterministic
Earthquake activity check, deterministic. Answers "any recent earthquakes near this location", "how seismically active is this area right now". Queries the USGS FDSN event catalog near a lat/lon within a radius (or the global M5+ feed when no point is given) over the last N days and returns each event (magnitude, place, time, depth, PAGER alert, significance) plus a code-computed summary: count, max/avg magnitude, risk level. No LLM, no key, public domain.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://riskpulse.theaslangroupllc.com/api/risk/quake-check
| Category | Code and developer |
|---|---|
| Provider host | riskpulse.theaslangroupllc.com |
| Networks | algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73k, eip155:137, eip155:143, eip155:196, eip155:42161, eip155:480, eip155:56, eip155:8453, eip155:999, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp, xrpl:0 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 402 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"days": {
"description": "lookback window in days (default 30, max 365)",
"example": "30",
"required": false,
"type": "number"
},
"lat": {
"description": "latitude of the point of interest (omit both lat and lon for the global feed)",
"example": "35.68",
"required": false,
"type": "number"
},
"limit": {
"description": "max events returned (default 20, max 100)",
"example": "20",
"required": false,
"type": "number"
},
"lon": {
"description": "longitude of the point of interest",
"example": "139.69",
"required": false,
"type": "number"
},
"min_magnitude": {
"description": "minimum magnitude (default 4.0 with a point, 5.0 global)",
"example": "4.5",
"required": false,
"type": "number"
},
"radius_km": {
"description": "search radius around the point in km (default 500, max 5000)",
"example": "500",
"required": false,
"type": "number"
}
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object"
}