docs/api reference/Property Deed History
Home ↗
GET

Property Deed History

Resolves a property address in the county CAD and returns normalized deed-history rows when the county source exposes them. Coverage is classified as complete, partial, not_found, unavailable, or not_certified. If no official deed rows are available, the endpoint returns 404 and does not charge credits.

Path

/api/deeds

Parameters

addressstringrequired

Official physical property address.

countystringrequired

Texas county containing the property.

latstring

Latitude coordinate, when already known.

lonstring

Longitude coordinate, when already known.

enrichboolean

Add a separate normalized live-web deed enrichment object.

Sample Response

{
  "property": {
    "id": "TX-BRAZOS-22444",
    "address": "421 S MAIN ST, BRYAN, TX 77803",
    "county": "Brazos",
    "owner": "VARISCO BRAZOS A ESTATE",
    "legalDescription": "BRAZOS COUNTY CAD LEGAL DESCRIPTION"
  },
  "deeds": [
    {
      "date": "2005-01-05",
      "type": "WD",
      "instrument": "WARRANTY DEED",
      "description": "WARRANTY DEED",
      "grantor": "VARISCO BRAZOS A ESTATE",
      "grantee": "VARISCO BRAZOS A ESTATE",
      "volume": "6473",
      "page": "015",
      "number": "00879594",
      "category": "market_sales",
      "source": "cad_bis"
    }
  ],
  "summary": {
    "total": 1,
    "market_sales": 1,
    "inheritance": 0,
    "gift": 0,
    "quitclaim": 0,
    "foreclosure": 0,
    "other": 0
  },
  "salesHistory": {
    "source": "cad_deeds",
    "hasPropertyHistory": true,
    "events": []
  },
  "coverage": {
    "status": "complete",
    "category": "complete",
    "attemptedSources": [
      "cad_bis"
    ],
    "successfulSources": [
      "cad_bis"
    ],
    "failedSources": [],
    "limitations": []
  },
  "sources": [
    "cad_bis"
  ],
  "explanation": "Normalized deed rows were retrieved for the resolved property."
}