# StableEstate Property Record Lookup

> StableEstate Property Record Lookup is a paid API for AI agents from stableestate.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves full property record details including attributes, tax history, and ownership for a specific U.S. property by address-based ID

## Facts

- Endpoint: GET https://stableestate.dev/api/properties/174-Earhardt-Rd,-Bastrop,-TX-78602
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stableestate-property-record-lookup-528ad638
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ibrkc8g2HRdBvT1AlnhDp

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 stableestate-property-record-lookup-528ad638
```

Example prompt: Pull up the full property record for 174 Earhardt Rd, Bastrop, TX 78602 — I need the property attributes, tax history, and current ownership info.

## When to prefer this

Use this endpoint when you need structured property data — including tax history and ownership — for a specific known U.S. property address. Ideal for real estate due diligence, investment research, title research, or enriching property listings. Prefer this over general web search when you need structured, reliable property record data at a per-lookup cost of $0.01 USDC.

## Known failure modes

- Property ID not found — returns 404 if the address-based ID does not match any record in the database
- Invalid address format in URL path — may return 400 or 404 if the address is malformed
- Payment failure — returns 402 if x402 payment is not completed or insufficient funds
- Rate limiting — returns 429 if too many requests are made in a short period
- Property not in coverage area — returns 404 or empty result if the address is outside supported jurisdictions

## How this service works

Get a specific property record by ID — full attributes, tax history, ownership

## Output

A full property record object containing detailed attributes (e.g. square footage, lot size, year built), historical tax assessment data, and current and past ownership information for the requested property address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stableestate-property-record-lookup-528ad638/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableestate.dev](https://www.zero.xyz/host/stableestate.dev/llms.txt)
