The response body for successful Address Proximity Search operations. Contains status information and a list of matching addresses found within the specified search radius.
Schema Overview
The Address Proximity Search Response schema wraps the response data from Address Proximity Search operations. It contains a response object with status, results, and optional error information.
Response structure
| Field | Type | Required | Description |
|---|---|---|---|
| response | object | Yes | Response object containing status, results, and optional error information. See Response schema. |
Example Address Proximity Search Response
{
"response": {
"addressId": "1",
"status": "OK",
"results": [
{
"location": {
"feature": {
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-122.406784,
37.681395
]
}
}
},
"customFields": {
"GEOID": "060816001001005",
"ADDNUMBER": "355",
"PBKEY": "P00002TUNVOW",
"COUNTRY": "USA",
"FORMATTEDADDRESS": "355 HUMBOLDT RD BRISBANE CA 94005-1627",
"STREETSUFFIX": "RD",
"POSTALCODE": "94005",
"POSTALCODEEXT": "1627",
"FIPS": "06081",
"PROPTYPE": "R",
"STREET": "HUMBOLDT",
"LANGCODE": "ENG",
"ADMIN2": "SAN MATEO",
"ADMIN1": "CA",
"CITY": "BRISBANE",
"LOCCODE": "P24",
"ADDRLINE4": "BRISBANE CA 94005-1627",
"ADDRLINE1": "355 HUMBOLDT RD",
"STREETNAME": "HUMBOLDT RD"
}
}
]
}
}