Business Places 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 Business Places data to return businesses related to an Address, Building or property.

By providing an Address or PreciselyID input you can return the related Business Place. By including a relationship requirement, you can return all businesses related to a feature, such as a Building or a Parcel.

Places by Address

This query will return the business directly related to the input address.
query getByAddress {
    getByAddress(address: "7304 E 29th Ave, Denver, CO 80207") {
        places {
            data {
                PBID
                pointOfInterestID
                preciselyID
                parentPreciselyID
                businessName
                brandName
                tradeName
                franchiseName
                countryIsoAlpha3Code
                localityName
                city
                admin2
                admin1
                admin1ShortName
                addressNumber
                streetName
                postalCode
                formattedAddress
                addressLine1
                addressLine2
                longitude
                latitude
                georesult {
                    value
                    description
                }
                georesultConfidence {
                    value
                    description
                }
                countryCallingCode
                phone
                fax
                email
                web
                open24Hours {
                    value
                    description
                }
                lineOfBusiness
                sic1
                sic2
                sic8
                sic8Description
                altIndustryCode {
                    value
                    description
                }
                miCode
                tradeDivision
                groupName
                mainClass
                subClass
            }
        }
    }
}

Places related to a Building with Address input

This query will return all businesses related the same Building as the input address.
query placesByBuildingAddress {
  getByAddress(address: "7304 E 29TH AVE Denver CO") {
    buildings {
      data {
        places {
          data {
            businessName
            web
            phone
            sic8Description
            subClass
          }
        }
      }
    }
  }
}

Places related to a Parcel with Address input

This query will return all businesses related the same Building as the input address.
query placesByParcelAddress {
  getByAddress(address: "7304 E 29TH AVE Denver CO") {
    parcels  {
      data {
        places {
          data {
            businessName
            web
            phone
            sic8Description
            subClass
          }
        }
      }
    }
  }
}