Address 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 Address Fabric™ Data based on Address or ID input. Address Fabric™ Data can be used to retrieve a single address record based on a PreciselyID to return full address attribution. Alternately, all address records for a location can be retrieved by relation to a feature in another dataset.

Address Fabric™ Data by PreciselyID

The query below returns the attributes for the record related to the input PreciselyID.

query addressByPreciselyID {
  getById(id: "P00002SYR01M", queryType: PRECISELY_ID) {
    addresses {
            data {
                preciselyID
                addressNumber
                streetName
                unitType
                unit
                city
                admin1ShortName
                postalCode
                postalCodeExtension
                locationCode {
                    value
                    description
                }
                geographyID
                latitude
                longitude
                parentPreciselyID
                propertyType {
                    value
                    description
                }
                fips
            }
        }
    }
}

Addresses (Address Fabric™ Data) – Canada by PreciselyID

The query below returns the attributes for the record related to the input PreciselyID.
query addressesByGetByID {
   getById(id: "P0001A64XUU6", queryType: PRECISELY_ID, country: "CANADA") {
      addresses {
         data {
            preciselyID
            addressNumber
            streetName
            unitType
            unit
            city
            admin1ShortName
            postalCode
            postalCodeExtension
            locationCode {
               value
               description
            }
            geographyID
            latitude
            longitude
            parentPreciselyID
            propertyType {
               value
               description
            }
         }
      }
   }
}
                

Address Fabric™ Data related to a Building with Address input

The query below returns all addresses that are related to the same Building as the input Address.

query GetByAddress {
    getByAddress(address: "10460 E 29th Dr Denver, CO") {
        buildings {
            data {
                addresses {
                    data {
                        preciselyID
                        addressNumber
                        streetName
                        unitType
                        unit
                        city
                        admin1ShortName
                        postalCode
                        postalCodeExtension
                        locationCode {
                            value
                            description
                        }
                        geographyID
                        latitude
                        longitude
                        parentPreciselyID
                        propertyType {
                            value
                            description
                        }
                        fips
                    }
                }
            }
        }
    }
}

Address Fabric™ Data related to a Parcel with Address input

The query below returns all addresses that are related to the same Parcel as the input Address.

query GetByAddress {
    getByAddress(address: "10460 E 29th Dr Denver, CO") {
        parcels {
            data {
                addresses {
                    data {
                        preciselyID
                        addressNumber
                        streetName
                        unitType
                        unit
                        city
                        admin1ShortName
                        postalCode
                        postalCodeExtension
                        locationCode {
                            value
                            description
                        }
                        geographyID
                        latitude
                        longitude
                        parentPreciselyID
                        propertyType {
                            value
                            description
                        }
                        fips
                    }
                }
            }
        }
    }
}