# 2024 Earthquake Dataset for Custom Date Range

**Use case:** 

Retrieve global earthquake data from 2024, filtered by date range and minimum magnitude. Get detailed reports on magnitude and seismic events.

## Input

```json
{
  "mode": "query",
  "timeRange": "custom",
  "startTime": "2024-01-01",
  "endTime": "2024-12-31",
  "minMagnitude": 4.5,
  "alertLevel": "",
  "sortOrder": "magnitude",
  "maxResults": 1000,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "time": {
    "label": "Time",
    "format": "text"
  },
  "place": {
    "label": "Location",
    "format": "text"
  },
  "magnitude": {
    "label": "Magnitude",
    "format": "number"
  },
  "magType": {
    "label": "Magnitude Type",
    "format": "text"
  },
  "depth": {
    "label": "Depth (km)",
    "format": "number"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "tsunami": {
    "label": "Tsunami",
    "format": "number"
  },
  "alert": {
    "label": "Alert",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "felt": {
    "label": "Felt Reports",
    "format": "number"
  },
  "sig": {
    "label": "Significance",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "url": {
    "label": "USGS URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [USGS Earthquake Scraper — Global Seismic Events API](https://apify.com/logiover/usgs-earthquake-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/usgs-earthquake-scraper) to learn more, explore other use cases, and run it yourself.