Serviceability - 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

This query returns key attributes to determine the serviceability of an address, as well as key indicators such as residential/business indicators, land use, and building designation for multi-tenant and multi-dwelling units.

Serviceability by Precisely ID

query addressByPreciselyID {
  getById(id: "P00003PZ60KH", queryType: PRECISELY_ID) {
    serviceability {
      data {
        serviceabilityID
        preciselyID
        residentialBusinessIndicator {
          value
          description
        }
        serviceableAddress
        standardizedLandUseValues {
          value
          description
        }
        genealogy {
          value
          description
        }
        genealogyCount
        buildingDesignation {
          value
          description
        }
      }
    }
  }
}

Serviceability by Address

query getByAddress {
    getByAddress(address: "2230 Monroe Ave, San Diego, CA 92116") {
        serviceability {
            data {
                serviceabilityID
                preciselyID
                residentialBusinessIndicator {
                    value
                    description
                }
                serviceableAddress
                standardizedLandUseValues {
                    value
                    description
                }
                genealogy {
                    value
                    description
                }
                genealogyCount
                buildingDesignation {
                    value
                    description
                }
            }
        }
    }
}