Batch Address Parser - 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 section describes how to get parsed address elements for batch of addresses using the Address Parser service. You may want to try it out with a Free Trial Account.

This method will consume credits.

HTTP Request
  • URL Composition
    • Base URL: https://api.cloud.precisely.com
    • Batch Address: /v1/address/parse/batch
  • Supported Methods POST only
  • Rate Limit (Transactions per second): 40
  • Summary Parses up to 10 single-line addresses into their components.
  • Input Fields Each request to the API service requires parameters listed below.
The data should be encoded as a JSON array where each element in the array is a JSON object with field names identical to those in the input/output fields listed below.
Table 1.

Parameter

Description
X-Request-Id (optional) A unique identifier for the request for easier troubleshooting.

Below is a sample request with a batch address request to Address Parser Service:

Schema
 {
  "addresses": [
    {
      "address": "string",
      "id": "string"
    }
  ]
}
Example
 {
  "addresses": [
    {
      "address": "1700 district ave #300 burlington, ma",
      "id": "1"
    },
    {
      "address": "170 district ave burlington, ma",
      "id": "2"
    }
  ]
}