# 🏠 US Property Records Scraper — Owner, Tax & Value (`inexhaustible_glass/us-property-records`) Actor

Scrape public county property/appraisal records: owner name, address, appraised & market value, account number. Public government data, no login. For real-estate investors, wholesalers, agents & analysts. Starts with Harris County (Houston, TX).

- **URL**: https://apify.com/inexhaustible\_glass/us-property-records.md
- **Developed by:** [Hitman studio](https://apify.com/inexhaustible_glass) (community)
- **Categories:** Real estate, Lead generation, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 property records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🏠 US County Property Records Scraper

Pull **public property & appraisal records** straight from county Appraisal District
GIS servers: **owner name, property address, appraised value, market value, account
number, state class**. 100% public government record — no login, no CAPTCHA, no
anti-bot, no proxy required.

Built for **real-estate investors, wholesalers, agents, skip-tracers, lenders, and
market analysts** who need bulk, structured property data.

### ✅ Why this is reliable (a permanent solution)
Unlike sites behind Cloudflare, county appraisal districts publish their data through
**official ArcGIS REST services** — stable, public, government-run endpoints meant for
public access. That means:
- ✅ Works from any IP (cloud/datacenter) — **no proxy, no blocks**
- ✅ Clean structured JSON, fast, paginated
- ✅ Public record by law — legal to access

### 🗺️ Coverage (growing)
| Area | Market | Status |
|---|---|---|
| **Harris County (Houston), TX** | 4th-largest US city | ✅ Live |
| **Tarrant County (Fort Worth), TX** | DFW metroplex | ✅ Live |
| **Florida** | ENTIRE state (every county) | ✅ Live |
| Travis, Dallas, California, New York… | | 🔜 added regularly |

> We add high-quality public sources continuously — full owner + address + value, no
> half-data. The biggest US real-estate markets first.

### 🔧 Input
| Field | What it does |
|---|---|
| **county** | Which appraisal district (default: Harris/Houston) |
| **zip** | Filter to a ZIP (e.g. `77002`) |
| **city** | Filter to a city (e.g. `HOUSTON`) |
| **ownerName** | Owner name contains (e.g. `SMITH`, `LLC`) |
| **addressContains** | Address contains (e.g. `MAIN ST`) |
| **stateClass** | Appraisal class (e.g. `A1` = single-family residential) |
| **minValue / maxValue** | Appraised value range (USD) |
| **maxResults** | How many records to pull |

Leave all filters empty to bulk-pull the whole county (capped by `maxResults`).

#### Example input
```json
{ "county": "harris", "city": "HOUSTON", "minValue": 200000, "maxValue": 600000, "maxResults": 5000 }
````

### 📤 Output (one row per property)

```json
{
  "county": "Harris County (Houston), TX",
  "owner": "SMITH JOHN A",
  "address": "1234 MAIN ST",
  "city": "HOUSTON",
  "zip": "77002",
  "subdivision": "...",
  "state_class": "A1",
  "appraised_value": 345000,
  "market_value": 360000,
  "account": "0660640130020"
}
```

Export to CSV, Excel, JSON or API.

### 💡 Use cases

- **Investors / wholesalers** — find owners by area, value band, property type
- **Agents** — farm a ZIP/neighborhood, build mailing lists
- **Lenders / insurers** — verify property values
- **Analysts** — market value distributions by city/ZIP

### ⚖️ Legal

Property ownership & appraisal data is **public record** in the US, published by county
appraisal districts for public access. Use responsibly and comply with each district's
terms and applicable laws (e.g. don't use for unlawful solicitation).

# Actor input Schema

## `county` (type: `string`):

Pick the area to scrape. More states & counties added regularly.

## `city` (type: `string`):

Filter to a city. Try HOUSTON, PASADENA, KATY, SPRING.

## `zip` (type: `string`):

Filter to a ZIP code. Example: 77002.

## `ownerName` (type: `string`):

Owner name contains this text. Examples: SMITH, LLC, CENTERPOINT.

## `addressContains` (type: `string`):

Address contains this text. Examples: MAIN ST, WESTHEIMER.

## `account` (type: `string`):

Exact appraisal account number for one specific property.

## `subdivision` (type: `string`):

Find properties whose subdivision/neighborhood contains this text, e.g. 'COPPERFIELD'.

## `stateClass` (type: `string`):

Appraisal state-class code, e.g. A1 = real residential single-family, A2 = mobile home, F1 = commercial, J3 = utility. Leave empty for all.

## `minValue` (type: `integer`):

Only properties with appraised value >= this. e.g. 200000.

## `maxValue` (type: `integer`):

Only properties with appraised value <= this. e.g. 1000000.

## `minMarketValue` (type: `integer`):

Only properties with market value >= this.

## `maxMarketValue` (type: `integer`):

Only properties with market value <= this.

## `customWhere` (type: `string`):

Raw ArcGIS SQL where-clause appended with AND, e.g. "appr\_val>500000 AND state\_class='A1'". Leave empty unless you know the field names.

## `maxResults` (type: `integer`):

How many property records to pull. Start small (100) to preview, then increase.

## Actor input object example

```json
{
  "county": "harris",
  "city": "HOUSTON",
  "zip": "77002",
  "ownerName": "LLC",
  "addressContains": "MAIN ST",
  "stateClass": "A1",
  "maxResults": 100
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "city": "HOUSTON",
    "maxResults": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("inexhaustible_glass/us-property-records").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "city": "HOUSTON",
    "maxResults": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("inexhaustible_glass/us-property-records").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "city": "HOUSTON",
  "maxResults": 100
}' |
apify call inexhaustible_glass/us-property-records --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=inexhaustible_glass/us-property-records",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🏠 US Property Records Scraper — Owner, Tax & Value",
        "description": "Scrape public county property/appraisal records: owner name, address, appraised & market value, account number. Public government data, no login. For real-estate investors, wholesalers, agents & analysts. Starts with Harris County (Houston, TX).",
        "version": "1.0",
        "x-build-id": "38dBbS4beIH0rbEOr"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/inexhaustible_glass~us-property-records/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-inexhaustible_glass-us-property-records",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/inexhaustible_glass~us-property-records/runs": {
            "post": {
                "operationId": "runs-sync-inexhaustible_glass-us-property-records",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/inexhaustible_glass~us-property-records/run-sync": {
            "post": {
                "operationId": "run-sync-inexhaustible_glass-us-property-records",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "county": {
                        "title": "🏛️ Location (county / state)",
                        "enum": [
                            "harris",
                            "tarrant",
                            "florida"
                        ],
                        "type": "string",
                        "description": "Pick the area to scrape. More states & counties added regularly.",
                        "default": "harris"
                    },
                    "city": {
                        "title": "🏙️ City (optional)",
                        "type": "string",
                        "description": "Filter to a city. Try HOUSTON, PASADENA, KATY, SPRING."
                    },
                    "zip": {
                        "title": "📮 ZIP code (optional)",
                        "type": "string",
                        "description": "Filter to a ZIP code. Example: 77002."
                    },
                    "ownerName": {
                        "title": "👤 Owner name contains (optional)",
                        "type": "string",
                        "description": "Owner name contains this text. Examples: SMITH, LLC, CENTERPOINT."
                    },
                    "addressContains": {
                        "title": "📍 Address contains (optional)",
                        "type": "string",
                        "description": "Address contains this text. Examples: MAIN ST, WESTHEIMER."
                    },
                    "account": {
                        "title": "🔢 Account / parcel number (optional)",
                        "type": "string",
                        "description": "Exact appraisal account number for one specific property."
                    },
                    "subdivision": {
                        "title": "🏘️ Subdivision contains",
                        "type": "string",
                        "description": "Find properties whose subdivision/neighborhood contains this text, e.g. 'COPPERFIELD'."
                    },
                    "stateClass": {
                        "title": "🏷️ State class code (optional)",
                        "type": "string",
                        "description": "Appraisal state-class code, e.g. A1 = real residential single-family, A2 = mobile home, F1 = commercial, J3 = utility. Leave empty for all."
                    },
                    "minValue": {
                        "title": "💰 Min appraised value (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only properties with appraised value >= this. e.g. 200000."
                    },
                    "maxValue": {
                        "title": "💰 Max appraised value (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only properties with appraised value <= this. e.g. 1000000."
                    },
                    "minMarketValue": {
                        "title": "💵 Min market value (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only properties with market value >= this."
                    },
                    "maxMarketValue": {
                        "title": "💵 Max market value (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only properties with market value <= this."
                    },
                    "customWhere": {
                        "title": "⚙️ Advanced: custom filter (power users)",
                        "type": "string",
                        "description": "Raw ArcGIS SQL where-clause appended with AND, e.g. \"appr_val>500000 AND state_class='A1'\". Leave empty unless you know the field names."
                    },
                    "maxResults": {
                        "title": "🔢 Max records",
                        "minimum": 1,
                        "maximum": 500000,
                        "type": "integer",
                        "description": "How many property records to pull. Start small (100) to preview, then increase.",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
