# CCBAY Data – Harris County Property Tax Records

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

Looks up Harris County, TX property tax records by parcel, returning owner, appraisal account number, and delinquency status.

## Facts

- Endpoint: GET https://api.ccbaydata.com/v1/tax
- Price: $0.1/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-tax-records-6cbadbbe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qC9yQaMmWg_oEGieybxdI

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-tax-records-6cbadbbe
```

Example prompt: Can you check whether the property at 1234 Main St in Houston is delinquent on its Harris County taxes and give me its HCAD account number?

## When to prefer this

Choose this endpoint when you need authoritative Harris County, TX property tax status — specifically delinquency checks and HCAD account lookups — as part of real estate due diligence, title research, or public records verification. It is purpose-built for Harris County and returns structured machine-readable data rather than requiring manual lookup on the HCAD portal.

## Known failure modes

- Property not found in Harris County records (found: false)
- Invalid or unrecognized parcel/property identifier returns empty result
- Rate limiting or payment failure at $0.10 USDC per call via x402
- Network timeout if HCAD data source is temporarily unavailable

## 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 a 'harris_county_records' block indicating whether records were found, whether the property is delinquent on taxes, and the HCAD account number associated with the parcel.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "harris_county_records": {
   "found": true,
   "delinquent": true,
   "hcad_account": "1150680080001"
  }
 }
}
```

## More

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