Parcel Enrichment - 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

Return records from Precisely's Parcel data to understand the property boundary related to an address.

By providing an Address or PreciselyID input you can return the related Parcel. By including a relationship requirement, you can return all parcels related to a feature, such as a building that may span multiple Parcels. Precisely's unique and persistent Parcel ID returned with any feature can then be used as input for future enrichment.

Parcel by Address

This query will return the primary parcel related to an address. The query returns data for a single parcel.

query parcelByAddress {
  getByAddress(address: "3252 Fulton St Denver") {
    parcels {
      data {
        parcelID
        fips
        geographyID
        apn
        parcelArea
        latitude
        longitude
        elevation
        geometry
      }
    }
  }
}

Parcels related to a Building with Address input

The following query will return the parcels related to the same building as an input address. The query can return data for multiple buildings.

query parcelsByBuildingAddress {
  getByAddress(address: "2552 N WILLIAMS ST Denver") {
    buildings {
      data {
        parcels {
          data {
            parcelID
            fips
            geographyID
            apn
            parcelArea
            latitude
            longitude
            elevation
            geometry
          }
        }
      }
    }
  }
}

Parcels by Precisely ID for Canada

The query below returns parcel data for the parcels related to the specified Precisely ID, for Canada. The query can return data for multiple parcels.

query parcelsByGetByID {
    getById(id: "P0001A64XUU6", queryType: PRECISELY_ID, country: "CANADA") {
        parcels {
            data {
                parcelID
                fips
                geographyID
                apn
                parcelArea
                longitude
                latitude
                elevation
                geometry
            }
        }
    }
}