USGS Earthquake Search - Seismic Event Data avatar

USGS Earthquake Search - Seismic Event Data

Pricing

from $2.00 / 1,000 results

Go to Apify Store
USGS Earthquake Search - Seismic Event Data

USGS Earthquake Search - Seismic Event Data

US government data: Search USGS earthquake data in real-time. Find earthquakes by magnitude, location, and date range. Official government seismic data. Export CSV, JSON, or Excel.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Ava Torres

Ava Torres

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 hours ago

Last modified

Share

USGS Earthquake Search

Search global earthquake data from the USGS Earthquake Hazards Program. Filter by magnitude, date range, geographic radius, and PAGER alert level. Returns structured seismic event records including magnitude, depth, coordinates, tsunami warnings, and felt reports. No API key required.


Data Source

USGS Earthquake Hazards Program API (earthquake.usgs.gov). Official federal seismic monitoring data covering global earthquakes from 1900 to present, with near-real-time data for recent events.


Output Fields

FieldTypeDescription
magnitudenumberEarthquake magnitude (Richter scale equivalent)
placestringHuman-readable location description
timestringEvent time in UTC
depthnumberHypocentral depth in kilometers
latitudenumberEpicenter latitude (decimal degrees)
longitudenumberEpicenter longitude (decimal degrees)
tsunamibooleanTrue if a tsunami message was issued for this event
alertstringPAGER alert level: green, yellow, orange, or red

Use Cases

  • Catastrophe risk modeling -- retrieve historical seismic events by location and magnitude for insurance, reinsurance, or engineering risk assessments.
  • Real-time monitoring feeds -- pull recent significant earthquakes for alerts, dashboards, or downstream notification systems.
  • Property and infrastructure risk analysis -- search historical earthquake activity within a defined radius of a location to assess seismic exposure.
  • Academic and geoscience research -- extract structured seismic data for statistical analysis, machine learning, or geological studies.
  • Emergency management -- identify major events with PAGER orange/red alerts for disaster response planning or resource allocation.
  • Media and public information -- surface notable recent earthquakes with structured details for news applications or public safety tools.

How to Use

Set the input fields and run the actor. Results are pushed to the Apify dataset and can be exported as JSON, CSV, or Excel.

Input Parameters

ParameterTypeDefaultDescription
searchTypestringsearchsearch for a custom query, or significant for M4.5+ events in the last 30 days
minMagnitudenumber4.0Minimum earthquake magnitude
maxMagnitudenumberMaximum earthquake magnitude. Leave 0 for no upper limit
startDatestringStart date in YYYY-MM-DD format. Defaults to 30 days ago if not set
endDatestringEnd date in YYYY-MM-DD format
latitudenumberCenter latitude for radius search (e.g., 34.0522 for Los Angeles)
longitudenumberCenter longitude for radius search (e.g., -118.2437 for Los Angeles)
radiusKmnumberSearch radius in kilometers from the center point
alertLevelstringPAGER alert level filter: green, yellow, orange, or red
orderBystringtimeSort order: time (newest first), magnitude (largest first), or time-asc (oldest first)
maxResultsinteger50Maximum events to return (1-20000)

Example -- Recent Significant Earthquakes

{
"searchType": "significant",
"maxResults": 100
}

Example -- Major Earthquakes Globally in 2024

{
"searchType": "search",
"minMagnitude": 6.0,
"startDate": "2024-01-01",
"endDate": "2024-12-31",
"orderBy": "magnitude",
"maxResults": 500
}

Example -- Earthquakes Near Los Angeles (50 km radius)

{
"searchType": "search",
"minMagnitude": 2.5,
"latitude": 34.0522,
"longitude": -118.2437,
"radiusKm": 50,
"startDate": "2020-01-01",
"maxResults": 1000
}

Example -- High-Impact Events with PAGER Orange or Red Alerts

{
"searchType": "search",
"minMagnitude": 5.0,
"alertLevel": "orange",
"startDate": "2015-01-01",
"orderBy": "magnitude",
"maxResults": 200
}

Cost

  • Actor start fee: ~$0.10 per run
  • Compute: minimal -- typical runs complete in seconds
  • Data cost: $0.005 per result

Output Formats

Results are available in the Apify dataset viewer and can be exported as:

  • JSON
  • CSV
  • Excel (XLSX)
  • XML
  • RSS

FAQ

Do I need a USGS account or API key? No. The USGS Earthquake Hazards API is fully public and requires no authentication.

How current is the data? For recent events, the USGS API typically reflects data within minutes to hours of detection. Historical data goes back to 1900 for significant events.

What is the PAGER alert level? PAGER (Prompt Assessment of Global Earthquakes for Response) is the USGS system for estimating the likely human and economic impact of an earthquake. Levels: green (limited impact), yellow (regional impact, limited casualties), orange (significant casualties, national response likely), red (severe casualties, international response likely).

What does the tsunami flag indicate? The tsunami field is true if the USGS issued a tsunami message for the event. It does not guarantee that a destructive tsunami occurred -- it indicates that official tsunami monitoring agencies were notified.

How does the radius search work? Provide latitude, longitude, and radiusKm together. The actor will return all earthquakes within that circular area. The maximum supported radius by the USGS API is approximately 20,000 km (global).

What magnitude scale is used? USGS uses multiple magnitude scales depending on the event (Mw, Ml, Mb, etc.). The magnitude field reflects the preferred magnitude as determined by USGS for each event, which is generally the most accurate available.