# HarrisRecords – Harris County TX Parcel Lookup

> HarrisRecords – Harris County TX Parcel Lookup is a paid API for AI agents from api.ccbaydata.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns owner of record, legal description, subdivision, and appraisal district valuation data for a Harris County, TX parcel, read live from the county on demand.

## Facts

- Endpoint: GET https://api.ccbaydata.com/v1/parcel
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/harrisrecords-harris-county-tx-parcel-lookup-4f94c0d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wend9UYJFivfdivNpX6pm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability harrisrecords-harris-county-tx-parcel-lookup-4f94c0d9
```

Example prompt: Look up the Harris County property record for the parcel at 1234 Main St, Houston, TX — I need the current owner of record, the HCAD appraised value, and the market value.

## When to prefer this

Use this endpoint when you need authoritative, live Harris County TX property data including ownership, legal description, and appraisal district valuations. Prefer this over cached or national aggregators when recency and accuracy are critical, such as for real estate due diligence, title work, or tax analysis specific to Harris County.

## Known failure modes

- Parcel not found in HCAD database (found: false)
- Invalid or ambiguous property identifier causes no match
- Live county data source temporarily unavailable causing timeout
- Rate limit or payment failure preventing record retrieval

## How this service works

Public record data for the people who look it up by hand: Harris County property records and multi state professional license verification, by API.

## Output

A JSON object containing a harris_county_records block with a found flag and an array of records per parcel, each including the HCAD account number, owner of record, market value, appraised value, land value, improvement value, legal description, and subdivision.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "harris_county_records": {
   "found": true,
   "records": [
    {
     "hcad_account": "1150680080001",
     "market_value": 865090,
     "appraised_value": 695937,
     "owner_of_record": "NORTHFIELDDH LLC"
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/harrisrecords-harris-county-tx-parcel-lookup-4f94c0d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ccbaydata.com](https://www.zero.xyz/host/api.ccbaydata.com/llms.txt)
