Sample: JSON
JSON POST Request
{
"preferences": {
"attributes": "landuse,heatingtype,salesdate"
},
"addresses": [
{
"objectId": "1",
"mainAddressLine": "1805 33rd Street",
"addressLastLine": "",
"placeName": "",
"areaName1": "CO",
"areaName2": "",
"areaName3": "Boulder",
"areaName4": "",
"postCode": "80301",
"postCodeExt": "",
"country": "USA",
"addressNumber": "",
"streetName": "",
"unitType": "",
"unitValue": ""
},
{
"objectId": "2",
"mainAddressLine": "4750 Walnut St",
"addressLastLine": "",
"placeName": "",
"areaName1": "CO",
"areaName2": "",
"areaName3": "Boulder",
"areaName4": "",
"postCode": "80301",
"postCodeExt": "",
"country": "USA",
"addressNumber": "",
"streetName": "",
"unitType": "",
"unitValue": ""
}
]
}
JSON POST Response
{
"propertyInfoResponses": [
{
"objectId": "1",
"propertyAttributes": {
"landUse": {
"code": "3003",
"value": "Office Bldg (General)"
},
"heatingType": {
"code": "Y",
"value": "Yes"
},
"salesDate": "20151112"
},
"matchedAddress": {
"formattedAddress": "1805 33RD ST, BOULDER, CO 80301-2505",
"mainAddressLine": "1805 33RD ST",
"addressLastLine": "BOULDER, CO 80301-2505",
"areaName1": "CO",
"areaName2": "BOULDER COUNTY",
"areaName3": "BOULDER",
"postCode": "80301",
"postCodeExt": "2505",
"country": "USA",
"addressNumber": "1805",
"streetName": "33RD",
"unitType": "",
"unitValue": ""
}
},
{
"objectId": "2",
"propertyAttributes": {
"landUse": {
"code": "3003",
"value": "Office Bldg (General)"
},
"heatingType": {
"code": "Z",
"value": "Zone"
},
"salesDate": "20180320"
},
"matchedAddress": {
"formattedAddress": "4750 WALNUT ST, BOULDER, CO 80301-2532",
"mainAddressLine": "4750 WALNUT ST",
"addressLastLine": "BOULDER, CO 80301-2532",
"areaName1": "CO",
"areaName2": "BOULDER COUNTY",
"areaName3": "BOULDER",
"postCode": "80301",
"postCodeExt": "2532",
"country": "USA",
"addressNumber": "4750",
"streetName": "WALNUT",
"unitType": "",
"unitValue": ""
}
}
]
}
In case no data is found, the following response is returned:
{
"propertyInfoResponses": [
{
"objectId": "1"
},
{
"objectId": "2"
}
]
}