# Harris County Property Records (`lmfamao/harris-county-property-records`) Actor

Search and retrieve Harris County TX property records including owner names, parcel addresses, market values, and exemptions from the official HCAD bulk data file.

- **URL**: https://apify.com/lmfamao/harris-county-property-records.md
- **Developed by:** [Mao Z](https://apify.com/lmfamao) (community)
- **Categories:** Business, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Harris County Property Records — Texas Parcel & Ownership Data

Search Harris County TX property records instantly — owner names, parcel addresses, market values, appraised values, exemptions, and more. Built on the official HCAD (Harris County Appraisal District) bulk data file, updated quarterly.

**From $0.05 per record** — no HCAD account required.

---

### Why This Actor

Real estate investors, title researchers, and data analysts need Harris County parcel data but the official HCAD website offers no API. Manually exporting records is slow and doesn't scale. This actor gives you programmatic access to 1.8+ million Harris County property records in seconds.

**What you get:** structured JSON with owner name, situs address, market value, appraised value, land/improvement breakdown, year built, exemptions, and property class — no screenshots, no PDFs, no web scraping.

**How it works:** queries the official HCAD quarterly bulk file (~150MB, 1.8M records) with fast in-memory filtering. Falls back to the ArcGIS Open Data REST API automatically.

---

### Pricing

**Pay-Per-Event (PPE):** $0.05 per property record returned.

| Event | Price |
|---|---|
| `property_record` | $0.05 / result |

Platform fees apply. First 1,000 events free for new accounts.

---

### Quick Start

#### Input Parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `searchType` | string | `bulk` | `account`, `address`, `owner`, `parcel`, or `bulk` |
| `query` | string | `""` | Search term (ignored for `bulk`) |
| `maxResults` | integer | `100` | Max records to return (1–10,000) |

#### Example: Search by Owner Name

```python
from apify_client import ApifyClient

client = ApifyClient("APIFY_TOKEN")
run = client.actor("your-username/harris-county-property-records").start(
    run_input={
        "searchType": "owner",
        "query": "SMITH JOHN",
        "maxResults": 50,
    }
)
print(client.run(run["id"].split("/")[-1]).wait_for_finish())
````

#### Example: Search by Address

```javascript
const Apify = require('apify-client');
const client = new ApifyClient({ token: 'APIFY_TOKEN' });
const { default: dataset } = await client.datasets.getOrCreate('harris-county-property-records');

const run = await client.actor('your-username/harris-county-property-records').start({
    searchType: 'address',
    query: '123 MAIN ST',
    maxResults: 100,
});
```

#### Example: cURL

```bash
curl -X POST "https://api.apify.com/v2/acts/your-username~harris-county-property-records/runs?token=APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"searchType":"parcel","query":"001001000001","maxResults":10}'
```

#### Output Schema

Each record is a JSON object:

```json
{
  "acct": "001001000001",
  "owner_name": "SMITH JOHN",
  "situs_addr": "123 MAIN ST HOUSTON TX 77001",
  "market_value": "250000",
  "appraised_value": "230000",
  "land_value": "80000",
  "improvement_value": "150000",
  "year_built": "1985",
  "property_class": "A",
  "exemptions": "HS"
}
```

***

### Search Types

| Type | Behaviour |
|---|---|
| `account` | Exact match on HCAD account number |
| `address` | Case-insensitive substring match on situs address |
| `owner` | Case-insensitive substring match on owner name |
| `parcel` | Exact match on parcel ID |
| `bulk` | Returns the first N records (no filter) |

***

### Competitor Comparison

| Feature | **This Actor** | zinc\_fish (HCAD Property Tax) |
|---|---|---|
| Data format | **Structured JSON** | Screenshots / unstructured |
| Data source | **Official HCAD bulk file** | Likely web scrape |
| No account required | **Yes** | Unknown |
| Fallback API | **ArcGIS Open Data** | None |
| Maintenance burden | **Low** (static quarterly file) | High (live scrape) |
| Approximate fail rate | **< 1%** | ~11% |
| PPE pricing | **$0.05/record** | Free / unspecified |

***

### FAQ

**Do I need an HCAD account?**
No. This actor uses the publicly available HCAD bulk download file — no login, no API key, no account required.

**How fresh is the data?**
HCAD publishes the full property bulk file quarterly. The data is current as of the most recent HCAD publication date.

**Is there a rate limit?**
No hard rate limit. The actor runs server-side in Apify's infrastructure. For very large bulk queries, allow extra runtime.

**What if HCAD changes their bulk file URL?**
The actor fetches the download page dynamically and parses the file URL. If the URL structure changes, the actor automatically falls back to the ArcGIS Open Data REST API.

**How many records can I return?**
Up to 10,000 records per run. For higher volumes, use the `bulk` search type and paginate across multiple runs.

***

### Related Actors

- [Dallas County Property Tax Records](https://apify.com/pink_comic/dallas-property-tax) — peer Texas county actor
- [US County Property Records (multi-county)](https://apify.com/inexhaustible_glass/us-property-records)

# Actor input Schema

## `searchType` (type: `string`):

Type of search to perform

## `query` (type: `string`):

Search term (account number, address, owner name, or parcel ID). Ignored when searchType is 'bulk'.

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

Maximum number of records to return (1–10000)

## Actor input object example

```json
{
  "searchType": "bulk",
  "query": "",
  "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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("lmfamao/harris-county-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("lmfamao/harris-county-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 '{}' |
apify call lmfamao/harris-county-property-records --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Harris County Property Records",
        "description": "Search and retrieve Harris County TX property records including owner names, parcel addresses, market values, and exemptions from the official HCAD bulk data file.",
        "version": "1.0",
        "x-build-id": "i143Z8F4sFSfv7MBW"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/lmfamao~harris-county-property-records/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-lmfamao-harris-county-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/lmfamao~harris-county-property-records/runs": {
            "post": {
                "operationId": "runs-sync-lmfamao-harris-county-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/lmfamao~harris-county-property-records/run-sync": {
            "post": {
                "operationId": "run-sync-lmfamao-harris-county-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": {
                    "searchType": {
                        "title": "Search Type",
                        "enum": [
                            "account",
                            "address",
                            "owner",
                            "parcel",
                            "bulk"
                        ],
                        "type": "string",
                        "description": "Type of search to perform",
                        "default": "bulk"
                    },
                    "query": {
                        "title": "Query",
                        "type": "string",
                        "description": "Search term (account number, address, owner name, or parcel ID). Ignored when searchType is 'bulk'.",
                        "default": ""
                    },
                    "maxResults": {
                        "title": "Maximum Results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of records to return (1–10000)",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
