Back to Services
Basic Trustrest
USGS Earthquake API — Seismic Events
Real-time earthquake data from the US Geological Survey. Query recent earthquakes by magnitude, location, and time range worldwide.
Total Calls
4
Success Rate
50.0%
Avg Latency
62ms
Capabilities
earthquakeseismicgeologydisasterrealtimegovernmentscience
Quick Integration
Call this service through the Agent Clear proxy
// Call USGS Earthquake API — Seismic Events through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/070f5c9e-d721-4424-8db9-f581e5152745',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Max results (default 20)"
},
"format": {
"type": "string",
"default": "geojson",
"description": "Response format (geojson, csv, text)"
},
"endtime": {
"type": "string",
"description": "End date (YYYY-MM-DD)"
},
"orderby": {
"type": "string",
"description": "Sort by: time, magnitude, time-asc, magnitude-asc"
},
"latitude": {
"type": "number",
"description": "Center latitude for radius search"
},
"longitude": {
"type": "number",
"description": "Center longitude for radius search"
},
"starttime": {
"type": "string",
"description": "Start date (YYYY-MM-DD)"
},
"maxradiuskm": {
"type": "number",
"description": "Max radius in km"
},
"maxmagnitude": {
"type": "number",
"description": "Maximum magnitude"
},
"minmagnitude": {
"type": "number",
"description": "Minimum magnitude"
}
}
}Output Schema
{
"type": "object"
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 30 req/min
- Trust Score
- 0.5
- Registered
- Mar 10, 2026
- Last Updated
- Mar 15, 2026