v1

latestOpenAPI 3.1.02026-07-24100171.6 KB

Property Records

Search for property records in a geographical area, or by a specific address.

get/properties

Query parameters

addressstring

The full address of the property, in the format Street, City, State, Zip. Used to retrieve data for a specific property, or together with the radius parameter to search for properties in a circular area

citystring

The name of the city, used to search for properties in a specific city. This parameter is case-sensitive

statestring

The 2-character state abbreviation, used to search for properties in a specific state. This parameter is case-sensitive

zipCodestring

The 5-digit zip code, used to search for properties in a specific zip code

latitudenumber float

The latitude of the search area. Use the latitude/longitude and radius parameters to search for properties in a circular area

longitudenumber float

The longitude of the search area. Use the latitude/longitude and radius parameters to search for properties in a circular area

radiusnumber float

The radius of the search area in miles, with a maximum of 100. Use in combination with the latitude/longitude or address parameters to search for properties in a circular area

propertyType'Single Family' | 'Condo' | 'Townhouse' | 'Manufactured' | 'Multi-Family' | 'Apartment' | 'Land'

The type of the property, used to search for properties matching this criteria. See explanation of property types. Supports multiple values

bedroomsstring

The number of bedrooms, used to search for properties matching this criteria. Use 0 to indicate a studio layout. Supports numeric ranges and multiple values

bathroomsstring

The number of bathrooms, used to search for properties matching this criteria. Supports fractions to indicate partial bathrooms, numeric ranges and multiple values

squareFootagestring

The total living area size in square feet, used to search for properties matching this criteria. Supports numeric ranges and multiple values

lotSizestring

The total lot size in square feet, used to search for properties matching this criteria. Supports numeric ranges and multiple values

yearBuiltstring

The year of construction, used to search for properties matching this criteria. Supports numeric ranges and multiple values

saleDateRangestring

The number of days since a property was last sold, with a minimum of 1. Used to search for properties that were sold within the specified date range. Supports numeric ranges

limitinteger

The maximum number of property records to return, between 1 and 500. Defaults to 50 if not provided. Learn more about pagination

offsetinteger

The index of the first property record to return, used to paginate through large lists of results. Defaults to 0 if not provided. Learn more about pagination

includeTotalCountboolean

When enabled, will return the total number of results matching the current query in the X-Total-Count response header. Defaults to false if not provided

Response

Success

idstring
formattedAddressstring
addressLine1string
addressLine2string
citystring
statestring
stateFipsstring
zipCodestring
countystring
countyFipsstring
latitudenumber
longitudenumber
propertyTypestring
bedroomsnumber
bathroomsnumber
squareFootagenumber
lotSizenumber
yearBuiltnumber
assessorIDstring
legalDescriptionstring
subdivisionstring
zoningstring
lastSaleDatestring date-time
lastSalePricenumber
ownerOccupiedboolean

Example response

[
  {
    "id": "5500-Grand-Lake-Dr,-San-Antonio,-TX-78244",
    "formattedAddress": "5500 Grand Lake Dr, San Antonio, TX 78244",
    "addressLine1": "5500 Grand Lake Dr",
    "city": "San Antonio",
    "state": "TX",
    "stateFips": "48",
    "zipCode": "78244",
    "county": "Bexar",
    "countyFips": "029",
    "latitude": 29.475962,
    "longitude": -98.351442,
    "propertyType": "Single Family",
    "bedrooms": 3,
    "bathrooms": 2,
    "squareFootage": 1878,
    "lotSize": 8850,
    "yearBuilt": 1973,
    "assessorID": "05076-103-0500",
    "legalDescription": "CB 5076A BLK 3 LOT 50",
    "subdivision": "WOODLAKE",
    "zoning": "RH",
    "lastSaleDate": "2024-11-18T00:00:00.000Z",
    "lastSalePrice": 270000,
    "hoa": {
      "fee": 175
    },
    "features": {
      "architectureType": "Contemporary",
      "cooling": true,
      "coolingType": "Central",
      "exteriorType": "Wood",
      "fireplace": true,
      "fireplaceType": "Masonry",
      "floorCount": 1,
      "foundationType": "Slab / Mat / Raft",
      "garage": true,
      "garageSpaces": 2,
      "garageType": "Garage",
      "heating": true,
      "heatingType": "Forced Air",
      "pool": true,
      "poolType": "Concrete",
      "roofType": "Asphalt",
      "roomCount": 5,
      "unitCount": 1,
      "viewType": "City"
    },
    "taxAssessments": {
      "2020": {
        "year": 2020,
        "value": 142610,
        "land": 23450,
        "improvements": 119160
      },
      "2021": {
        "year": 2021,
        "value": 163440,
        "land": 45050,
        "improvements": 118390
      },
      "2022": {
        "year": 2022,
        "value": 197600,
        "land": 49560,
        "improvements": 148040
      },
      "2023": {
        "year": 2023,
        "value": 225790,
        "land": 59380,
        "improvements": 166410
      },
      "2024": {
        "year": 2024,
        "value": 216513,
        "land": 59380,
        "improvements": 157133
      }
    },
    "propertyTaxes": {
      "2020": {
        "year": 2020,
        "total": 3023
      },
      "2021": {
        "year": 2021,
        "total": 3455
      },
      "2022": {
        "year": 2022,
        "total": 4077
      },
      "2023": {
        "year": 2023,
        "total": 4201
      },
      "2024": {
        "year": 2024,
        "total": 4065
      }
    },
    "history": {
      "2017-10-19": {
        "event": "Sale",
        "date": "2017-10-19T00:00:00.000Z",
        "price": 185000
      },
      "2024-11-18": {
        "event": "Sale",
        "date": "2024-11-18T00:00:00.000Z",
        "price": 270000
      }
    },
    "owner": {
      "names": [
        "Rolando Villarreal"
      ],
      "type": "Individual",
      "mailingAddress": {
        "id": "5500-Grand-Lake-Dr,-San-Antonio,-TX-78244",
        "formattedAddress": "5500 Grand Lake Dr, San Antonio, TX 78244",
        "addressLine1": "5500 Grand Lake Dr",
        "city": "San Antonio",
        "state": "TX",
        "stateFips": "48",
        "zipCode": "78244"
      }
    },
    "ownerOccupied": true
  }
]
All 10 operations