Skip to main content

Search for a property

Retrieves a property record by using the search route.

Note: Because we compare sources while checking data, you will want to allow for time for the searching and comparision to finish. This can sometimes take between 10 - 15 seconds.

Paramaters​

address - required​

Address of property

city - required​

City of property

state - required​

State of property

zipcode - optional​

Zipcode of property

Code Example​

GET - https://api.particlespace.com/api/v1/property/search
var axios = require('axios');
const BEARER_TOKEN = 'SET_ME';
var config = {
method: 'get',
url: 'https://api.particlespace.com/api/v1/property/search?address=808 awesome street&city=kansas city&state=mo&zipcode=64012',
headers: {
'Authorization': 'Bearer ' + BEARER_TOKEN
}
};

axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});