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.
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"
}
]
}