# 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 information for a specific US property by its address-based ID

## Facts

- Endpoint: GET https://stableestate.dev/api/properties/1005-Upper-Elgin-River-Rd,-Elgin,-TX-78621
- 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-883924c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IJwyDvwJ3yds0ChDu5k3b

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-883924c0
```

Example prompt: Can you pull up the full property record for 1005 Upper Elgin River Rd in Elgin, TX 78621 — I need the property attributes, tax history, and ownership info?

## When to prefer this

Use this endpoint when you need comprehensive property data for a specific known US address, including tax history and ownership records, and the address can be encoded as a URL path segment. Prefer this over general real estate search APIs when you already know the exact address and need deep structured data rather than a list of matching properties.

## 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 — returns 400 if the path parameter is malformed
- Rate limiting or payment failure — returns 402 if the x402 micropayment is not properly handled
- Property data unavailable for the requested jurisdiction — some counties may not have data
- Temporary data provider outage — returns 503

## How this service works

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

## Output

A full property record object containing property attributes (e.g. lot size, structure type, square footage), historical tax assessments and payments, and ownership records (current and past owners) 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-883924c0/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)
