The earthquake data set provides information on US and international earthquakes, including location, magnitude, depth, and more. Earthquake archive data is available from 1945.
Use our wizard to try out this endpoint
The following actions are supported with the earthquakes endpoint:
:id | Requesting data by using the :id action is used for returning data for a particular item that has an ID associated with it. This is the primary method for requesting general weather information for a single location (observations, forecasts, advisories, etc.) as the location's name or a zip code serves as the id. Other endpoints may expect a certain value for the ID, such as storm cells whose ID value is a combination of the radar site identifier and unique identifier assigned to every storm cell. Refer to an endpoint's detailed documentation for specific information regarding how to use the :id action. |
closest | The closest action will query the API for data that is closest to the requested place and return the results, if any, in order from closest to farthest. If no limit is provided in the request, then only the closest single result will be returned. If your request does not return results, you may try setting or increasing the radius being used. |
within | The within action allows for returning data within a variety of different geometrical regions. Currently supported geometries include a circle (requires a center point and radius), rectangle (requires two coordinate points defining the top-left and bottom-right corners) and polygon (requires at least three coordinate points). Unlike the closest action, the results will not be returned in any particular order based on distance. |
search | The search action is used as a more general query method and expects the query to be defined with the custom query for the request. Unlike the closest action, results will not be returned in any particular order. |
affects | The affects action requests all places affected by a particular type of event, such as earthquake or storm cell. The query for places affected is unique for each endpoint it belongs to and can be a polygon (e.g., storm cell forecasts or warnings) or a circle with the center being the location of the event (e.g., earthquakes or fires). Instead of returning an array of objects specific to the endpoint, the affects action will always return an array of place objects in the same format as the within action on the places endpoint. Note: Not all endpoints support this action, so refer to each endpoint's complete documentation to determine if supported and its usage. |
The following parameters are optional unless otherwise noted:
p | p=:place |
Defines the location to query data for. Refer to the list of supported place value formats. |
limit | limit=:total |
The total number of results to return as an integer. Each endpoint may have a set maximum for this value depending on usage. The default limit is 1 if not specified. The maximum limit for this endpoint is 250. |
filter | filter=:string |
Predefined filters for limiting the results. The filter value can be a single, comma-delimited or a semicolon delimited string of filter names. |
query | query=:string |
Used to filter results based on certain fields in the data set. See Advanced Queries for more details. |
radius | radius=:distance:unit |
When requesting the closest results within a circle, the radius determines how far from the specified location to search. A valid unit value must be included in your radius value, e.g., "5mi", "10km", "25miles". If no unit is provided, your value is assumed to be in meters by default. Most endpoints utilize a default radius of 50 miles, though some endpoints, such as lightning, may have tighter restrictions specified. |
minradius | minradius=:distance:unit |
When requesting the closest results within a circle, the minradius determines how far from the specified location to search to begin searching results. A valid unit value must be included in your minimum radius value, e.g., "5mi", "10km", or "25miles". If no unit is provided, your value is assumed to be in meters by default. When combined with the radius parameter, donut style queries can be made for point data, such as lightning. |
sort | sort=:string |
Used to sort results based on certain fields in the data set. See Sorting for more details. |
fields | fields=:string |
Provides a comma separated list of values for the API to return. This parameter is often used to limit the amount of data returned. See Reducing Output. |
from | from=:string |
Returns the results starting from the value specified. For best practices we recommend using the to parameter as well to define a specific time frame.Supports a UNIX timestamp or a specific date string. Alternatively, common date formats supported by the PHP strtotime() function will be accepted; however, commas are not accepted. Examples: from=tomorrow from=friday from=1302883980 from=MM/DD/YYYY from=YYYY/MM/DD from=+2hours from=2017-02-27 5:00 PM |
to | to=:string |
Returns the results between now and the value specified. For best practices we recommend using the from parameter as well to define a specific time frame. When used in conjunction with the from parameter, the value of to will be relative to the value of from, not relative to the current time. Supports a UNIX timestamp or a specific date string. Alternatively, common date formats supported by the PHP strtotime() function will be accepted; however, commas are not accepted. Examples: to=+6hours to=+5days to=1302883980 to=MM/DD/YYYY to=YYYY/MM/DD to=2017-02-27 5:00 PM |
skip | skip=:number |
Used to skip over a specific number of results in the data set. |
The following filters can be passed to the filter parameter to reduce the results that are returned:
mini | Return earthquakes with a magnitude of less than 3.0 |
minor | Return earthquakes with a magnitude between 3.0 and 3.9 |
light | Return earthquakes with a magnitude between 4.0 and 4.9 |
moderate | Return earthquakes with a magnitude between 5.0 and 5.9 |
strong | Return earthquakes with a magnitude between 6.0 and 6.9 |
major | Return earthquakes with a magnitude between 7.0 and 7.9 |
great | Return earthquakes with a magnitude of 8.0 or greater |
shallow | Return earthquakes with a depth of less than 70km |
Use the following supported property keys when creating custom queries for your requests:
id | Query on the USGS earthquake ID. |
mag | Query based on the magnitude of the earthquake. |
depth | Query based on the depth of the earthquake in kilometers. |
state | Query based on the state the earthquake occurred. |
name | Query based on the location name of where the earthquake occurred. |
country | Query based on the country the earthquake occurred. |
Default Sort: dt (desc)
You can use the following fields to sort data. Review the sorting docs page for more information on the sort functionality.
dt | Sort based on the date/time of the earthquake. |
id | Sort based on the USGS earthquake ID. |
mag | Sort based on the earthquake magnitude. |
depth | Sort based on the earthquake depth. |
state | Sort based on the state that the earthquake occurred in. |
country | Sort based on the country the earthquake occurred. |
region | Sort based on the general region of the earthquake. |
The /[:endpoint]/[:action]?
portion within the query template below can be exchanged with any of the examples. Also, please note you will need to input your client credentials in the [ID]
and [SECRET]
fields which can be found under the Apps section of the members area.
https://api.aerisapi.com/[:endpoint]/[:action]?client_id=[ID]&client_secret=[SECRET]
Return nearby earthquakes within 100 miles of San Diego, California./earthquakes/san diego,ca?radius=100miles
Return closest/nearby earthquake to the specified location./earthquakes/closest?p=74640&
Returns all earthquakes within a rectangle defined by the coordinates specified in the point parameter. The points should be: top latitude, left longitude, bottom latitude, right longitude./earthquakes/within?p=:top,:left,:bottom,:right /earthquakes/within?p=45.25,-95.25,35.25,-85.25&
Returns all earthquakes within a circle with its center at the specified latitude/longitude point and a radius distance from that center.
NOTE: This functionality is similar to the closest search, but does not include a distance or sorting. It is a faster query./earthquakes/within?p=:lat,:lon&radius=:distance /earthquakes/within?p=44,-93&radius=25miles&
Returns information on the earthquake with USGS id: us1000edqv/earthquakes/us1000edqv
The following is an example of what each object in the response will consist of. Depending on your requested action, the response may contain multiple instances of this object within an array.
{
"success": true,
"error": null,
"response": [{
"loc": {
"long": 97.1033,
"lat": 1.3779
},
"report": {
"id": "us1000edqv",
"timestamp": 1527564117,
"dateTimeISO": "2018-05-29T10:21:57+07:00",
"mag": 5.2,
"type": "moderate",
"depthKM": 23.44,
"depthMI": 14.56,
"region": "146km SSE of Sinabang, Indonesia",
"location": "146km SSE of Sinabang, Indonesia"
},
"place": {
"name": "kabupaten nias",
"state": "",
"country": "id"
},
"profile": {
"tz": "Asia\/Jakarta"
}
}]
}
{
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [97.1033, 1.3779]
},
"properties": {
"loc": {
"long": 97.1033,
"lat": 1.3779
},
"report": {
"id": "us1000edqv",
"timestamp": 1527564117,
"dateTimeISO": "2018-05-29T10:21:57+07:00",
"mag": 5.2,
"type": "moderate",
"depthKM": 23.44,
"depthMI": 14.56,
"region": "146km SSE of Sinabang, Indonesia",
"location": "146km SSE of Sinabang, Indonesia"
},
"place": {
"name": "kabupaten nias",
"state": "",
"country": "id"
},
"profile": {
"tz": "Asia\/Jakarta"
}
}
}]
}
The following properties will be provided in every response object:
Last modified: October 05, 2022