get_recent_earthquakes
worldmonitor.appRetrieves recent global earthquake events from https://worldmonitor.app using its USGS-backed seismology feed. Returns per-event magnitude, depth, location coordinates, timestamps, and source links with optional minimum-magnitude filtering.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_recent_earthquakes?
Retrieves recent global earthquake events from https://worldmonitor.app using its USGS-backed seismology feed. Returns per-event magnitude, depth, location coordinates, timestamps, and source links with optional minimum-magnitude filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, min_magnitude and get the result back without maintaining a scraper.
Response
{
"count": 0,
"source": "<string>",
"earthquakes": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/e57b8854-d729-40ef-a27c-15e122acbae7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e57b8854-d729-40ef-a27c-15e122acbae7",
"variables": {
"limit": 100,
"min_magnitude": 0.0
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="e57b8854-d729-40ef-a27c-15e122acbae7") — the "get_recent_earthquakes" function, which retrieves recent global earthquake events from https://worldmonitor.app using its USGS-backed seismology feed. Returns per-event magnitude, depth, location coordinates, timestamps, and source links with optional minimum-magnitude filtering.. It takes limit (int), min_magnitude (float). Return the result as structured JSON.