# Storm Hail Lead Finder Task

**Use case:** 

Storm Hail Finder Upper Midwest

## Input

```json
{
  "dateMode": "yesterday",
  "states": [
    "MN",
    "WI",
    "SD",
    "ND"
  ],
  "minHailSizeInches": 1.5,
  "radiusMiles": 1.5,
  "maxReports": 5,
  "maxAddresses": 100,
  "addressSource": "osm",
  "overpassEndpoint": "https://overpass-api.de/api/interpreter",
  "overpassDelaySeconds": 1,
  "maxRuntimeSeconds": 270
}
```

## Output

```json
{
  "type": {
    "label": "Row type",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "postcode": {
    "label": "Postcode",
    "format": "string"
  },
  "hail_size_in": {
    "label": "Hail (in)",
    "format": "number"
  },
  "distance_miles": {
    "label": "Distance (mi)",
    "format": "number"
  },
  "event_date": {
    "label": "Storm date",
    "format": "string"
  },
  "event_time_utc": {
    "label": "Event time utc",
    "format": "string"
  },
  "event_location": {
    "label": "Report location",
    "format": "string"
  },
  "county": {
    "label": "County",
    "format": "string"
  },
  "addresses_found": {
    "label": "Addresses found",
    "format": "integer"
  },
  "address_source": {
    "label": "Address source",
    "format": "string"
  },
  "event_id": {
    "label": "Event id",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Storm Hail Damage Leads — NOAA Reports to Affected Addresses](https://apify.com/industrious_emphasis/storm-hail-lead-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/industrious_emphasis/storm-hail-lead-finder) to learn more, explore other use cases, and run it yourself.