# Interzoid Get Property History

> Interzoid Get Property History is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Retrieves ownership history, sale price, sale date, property type, and current owner for a US property address.

## Facts

- Endpoint: GET https://api.interzoid.com/getpropertyhistory
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-property-history-65cf4466
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GD-n-eTCxV0CrRgZl0-lm

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 interzoid-get-property-history-65cf4466
```

Example prompt: Can you pull up the ownership history for 600 Montgomery St, San Francisco, CA 94111 — I want to know who owns it now, when it last sold, and for how much?

## When to prefer this

Use this endpoint when you need structured US property ownership and transaction history — including current owner, sale price, sale date, and ownership chain — from a single address lookup. Ideal for real estate due diligence, CRM/ERP data enrichment, MDM pipelines, or any workflow where knowing who owns a property and its transaction history is valuable. Prefer over general web search when you need structured, machine-readable property data.

## Known failure modes

- Address not found or not recognized — returns non-Success code
- Non-US address provided — not supported
- Malformed or missing address parameter — request fails validation
- Property with no recorded transaction history — limited or empty data fields
- Insufficient credits / payment failure — no data returned

## How this service works

Retrieve property transaction history for any US address including last sale date and price, prior transactions over up to ten years, price-per-square-foot trajectory, ownership chain, recorded deed types, mortgage history, and current owner of record.

## Output

Returns a JSON object containing the property address, current owner, property type, last sale date, last sale price, and an ownership chain showing historical owners with date ranges. Also includes a status code and credits field.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "600 Montgomery St, San Francisco, CA 94111"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "US property street address (lookup also accepted as alias)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "CurrentOwner": "SHVO / Deutsche Finance / Baupost JV",
  "LastSaleDate": "October 2020",
  "PropertyType": "Commercial office tower",
  "LastSalePrice": "$650 million",
  "OwnershipChain": "Aegon N.V. (1999-2020) → SHVO consortium (2020-)",
  "PropertyAddress": "600 Montgomery St, San Francisco, CA 94111 (Transamerica Pyramid)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-property-history-65cf4466/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
