Search Earthquakes
search_earthquakesSearch seismic events from EMSC (European-Mediterranean Seismological Centre) via the FDSN-standard seismicportal.eu API. Global coverage with especially strong Europe/Mediterranean reporting — complements USGS. Filter by UTC time range, magnitude, and location (either a bounding box OR a center point + radius in degrees). Times are UTC ISO 8601, depth in km, and place names come from the Flynn-Engdahl region. Example: search_earthquakes({ start: "2026-01-01", end: "2026-02-01", minmag: 5.0, orderby: "magnitude" }) or search_earthquakes({ lat: 38.0, lon: 23.7, maxradius: 5, minmag: 3 }).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | End of UTC time window, ISO 8601. | |
| lat | No | Center latitude for circular search (use with lon + maxradius). | |
| lon | No | Center longitude for circular search (use with lat + maxradius). | |
| limit | No | Maximum number of results, 1-1000 (default: 50). | |
| start | No | Start of UTC time window, ISO 8601 (e.g. "2026-01-01" or "2026-01-01T00:00:00"). | |
| maxlat | No | Bounding box northern latitude, -90 to 90 (optional). | |
| maxlon | No | Bounding box eastern longitude, -180 to 180 (optional). | |
| maxmag | No | Maximum magnitude (optional). | |
| minlat | No | Bounding box southern latitude, -90 to 90 (optional). | |
| minlon | No | Bounding box western longitude, -180 to 180 (optional). | |
| minmag | No | Minimum magnitude (optional). | |
| orderby | No | Result ordering (default: "time", i.e. newest first). | |
| maxradius | No | Maximum radius in degrees from center lat/lon (optional). | |
| minradius | No | Minimum radius in degrees from center lat/lon (optional). |