Address Validation
Lookup an address based on a key.
post/address/lookup/v1
Headers
Reference-Idstring
Optional identifier that will be returned in the response to help you track the request.
Timeout-Secondsinteger
Maximum time you are prepared to wait for a response, expressed in seconds. Acceptable values: 2-15. If a timeout occurs, an HTTP status code of 408 - Request Timeout will be returned.
Request body
Example request
{
"country_iso": "USA",
"datasets": [
"us-address"
],
"key": {
"type": "Default",
"value": "1234567890"
}
}Response
OK
Example response
{
"error": {
"title": "Bad Request",
"detail": "The request body was malformed."
},
"result": {
"confidence": "Verified match",
"suggestions_prompt": "Enter selection",
"suggestions": [
{
"text": "Level 6 549 St Kilda Road, MELBOURNE VIC 3004",
"matched": [
[
17,
22
],
[
11,
15
],
[
3,
10
],
[
0,
2
]
],
"dataset": "Multiple Residence",
"additional_attributes": [
{
"name": "flatten",
"value": "true"
}
]
}
]
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.