v1

latestOpenAPI 3.0.02026-07-26432882.9 KB
Search by

Owner Name Search

This endpoint delivers parcels using the owner name, either an individual or entity. Multiple parcels can be returned so limit the response by using parameter limit and specify the location within a State, County and/or City using the parameter path. This endpoint allows access to test all of our premium matched datasets.

get/parcels/owner

Query parameters

ownerstring required

The owner name in Last, First format. Matches by prefix, you can pass just a last name to get any name beginning with that string. (Case insensitive, minimum 4 characters)

pathstring

Represents the path for the /country/state/county. This restricts the search to this area.

limitinteger

Maximum number of Parcel Records to return.

return_customboolean

Default false. A true value allows county-specific fields to be passed through beyond standard schema fields only.

return_field_labelsboolean

Default false. A true value shows the naming convention for each standardized schema field.

return_stackedboolean

Default true. A false value returns the first parcel if geometries are identical.

return_zoningboolean

Set to false to disable zoning data in the response. Default is true when supported by the account.

return_matched_buildingsboolean

Set to false to disable building footprint data in the response. Default is true when supported by the account.

return_matched_addressesboolean

Set to false to matched addresses data in the response. Default is true when supported by the account.

return_enhanced_ownershipboolean

Set to false to disable enhanced ownership data in the response. Default is true when supported by the account.

Response

A list of parcel features. When supported by the account with buildings array and addresses property

Example response

{
  "parcels": {
    "type": "FeatureCollection",
    "features": [
      {
        "type": "Feature",
        "properties": {
          "score": 86.75966
        }
      }
    ]
  },
  "buildings": {
    "type": "FeatureCollection",
    "features": [
      {
        "type": "Feature"
      }
    ]
  },
  "zoning": {
    "type": "FeatureCollection",
    "features": [
      {
        "type": "Feature"
      }
    ]
  }
}