getParcelByOwner - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

The getParcelByOwner query returns parcels of land that are adjacent to or nearby the specified address, that are owned by the same entity, within the specified search distance. The address can be specified as a text string or by ID.

This query is supported for the Parcels dataset and Parcels' related nested datasets.

Query syntax:

getParcelByOwner(
id: String
queryType: QueryType
address: String
distance: Float = 1000
limit: Int = 50
): ParcelByOwnerRelationEntity
Parameter Type Required Description
id String Optional The ID to search on. address or id must be specified.
queryType QueryType Optional The type of ID you provided. Required if id is specified.
  • PRECISELY_ID: Unique ID for an addressable location
  • BUILDING_ID: Unique building identifier
  • DUNS_ID: Unique ID for Dun & Bradstreet
  • GERS_ID: Unique ID for Overture.
  • PLACE_ID: Unique place identifier
  • PARCEL_ID: Unique feature ID for a parcel boundary record
address String Optional The address to search on. address or id must be specified.
distance Float Optional The distance, in meters.
limit Integer Optional The most records you will return.

Example 1

The query below returns parcel data for parcels that are owned by the owner of the indicated parcel, if they fall within 100 meters of the indicated parcel.

{
  getParcelByOwner(
    distance: 100
    limit: 5
    address: "1 GLOBAL VW, TROY NY 12180-8371, United States"
  ) {
    parcels {
      data {
        parcelID
        fips
        propertyAttributes {
          data {
            owner
            owner2
          }
        }
      }
    }
  }
}

Example 2

The query below returns parcel data for up to 10 parcels that are owned by the owner of the indicated parcel, if they fall within 1500 meters of the indicated parcel.

{
  getParcelByOwner(
    id: "P0000GL41OME"
    queryType: PRECISELY_ID
    distance: 1500
    limit: 10
  ) {
    parcels {
      data {
        parcelID
        parcelArea
        propertyAttributes {
          data {
            owner
            owner2
          }
        }
      }
    }
  }
}