# Export Texas hail records from NOAA Storm Events

**Use case:** 

Collect Texas hail storm-event records from NOAA with event dates, counties, magnitude, damages, casualties, and source file URLs.

## Input

```json
{
  "years": [
    2024
  ],
  "startYear": 2024,
  "endYear": 2024,
  "states": [
    "TEXAS"
  ],
  "eventTypes": [
    "Hail"
  ],
  "minMagnitude": 1,
  "includeNarrative": false,
  "maxItems": 100
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID"
  },
  "episodeId": {
    "label": "Episode ID"
  },
  "year": {
    "label": "Year"
  },
  "state": {
    "label": "State"
  },
  "czName": {
    "label": "County/zone"
  },
  "eventType": {
    "label": "Event type"
  },
  "beginDateTime": {
    "label": "Begin time"
  },
  "endDateTime": {
    "label": "End time"
  },
  "beginLatitude": {
    "label": "Begin latitude"
  },
  "beginLongitude": {
    "label": "Begin longitude"
  },
  "magnitude": {
    "label": "Magnitude"
  },
  "deathsDirect": {
    "label": "Direct deaths"
  },
  "injuriesDirect": {
    "label": "Direct injuries"
  },
  "damagePropertyUsd": {
    "label": "Property damage USD"
  },
  "damageCropUsd": {
    "label": "Crop damage USD"
  },
  "source": {
    "label": "Source"
  },
  "sourceFileUrl": {
    "label": "Source file URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [NOAA Storm Events Database Scraper](https://apify.com/automation-lab/noaa-storm-events-database-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/noaa-storm-events-database-scraper) to learn more, explore other use cases, and run it yourself.