# Scrape US Property Records by County

**Use case:** 

Pull property owner records from official county portals with Owner, Property address, Market value, Year built and Source. Export to JSON, CSV or Excel.

## Input

```json
{
  "sources": [
    "ny-state",
    "nyc",
    "cook-il",
    "norfolk-va"
  ],
  "absenteeOwnersOnly": false,
  "businessOwnersOnly": false,
  "excludeGovernmentOwners": true,
  "maxResults": 300,
  "sortBy": "value",
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "ownerType": {
    "label": "Owner type",
    "format": "text"
  },
  "propertyAddress": {
    "label": "Property address",
    "format": "text"
  },
  "propertyCity": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "mailingAddress": {
    "label": "Owner mailing address",
    "format": "text"
  },
  "absenteeOwner": {
    "label": "Absentee",
    "format": "boolean"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "marketValue": {
    "label": "Market value",
    "format": "number"
  },
  "assessedValue": {
    "label": "Assessed value",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "lastSaleDate": {
    "label": "Last sale",
    "format": "text"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "source": {
    "label": "Source",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [US Property Records Scraper - Owner Leads](https://apify.com/scrapesage/us-property-records-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/us-property-records-scraper) to learn more, explore other use cases, and run it yourself.