# CCBAY Data – Harris County Property Records

> CCBAY Data – Harris County Property Records is a paid API for AI agents from api.ccbaydata.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Looks up Harris County, TX property records by parcel, returning owner of record, tax delinquency status, legal description, and appraisal data.

## Facts

- Endpoint: GET https://api.ccbaydata.com/v1/property
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ccbay-data-harris-county-property-records-07e785a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jalywReaHb23n_NZM-pJP

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 ccbay-data-harris-county-property-records-07e785a6
```

Example prompt: Can you look up the Harris County property records for 1234 Main St Houston TX — I want to know who the current owner of record is and whether there are any delinquent taxes?

## When to prefer this

Choose this endpoint when you need fast, API-accessible Harris County TX public property records — specifically owner of record, tax delinquency, and appraisal data — without manually searching the HCAD website. Ideal for real estate due diligence, title research, investment screening, or automated workflows that need Houston-area parcel data programmatically.

## Known failure modes

- Property not found in Harris County records — 'found: false' returned
- Invalid or ambiguous property query string yields no match
- Rate limiting or payment failure for x402 micro-payment
- Property exists but has incomplete HCAD data on record

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

Returns a JSON object with Harris County property record details including owner of record (e.g. entity or individual name), parcel data, tax delinquency status (boolean), legal description, subdivision, and appraisal district information for the queried property.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "harris_county_records": {
   "tax": {
    "delinquent": true
   },
   "found": true,
   "parcel": {
    "owner_of_record": "NORTHFIELDDH LLC"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ccbay-data-harris-county-property-records-07e785a6/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)
