Skip to main content

Find property boundaries

Retrieve boundary information on a location.

Paramaters​

search - required​

This can be a building name, property address, county, or city.

Code Example​

GET - https://api.particlespace.com/api/v1/property/boundaries
var axios = require('axios');
const BEARER_TOKEN = 'SET_ME';
var config = {
method: 'get',
url: 'https://api.particlespace.com/api/v1/property/boundaries?search=willis tower chicago il',
headers: {
'Authorization': 'Bearer ' + BEARER_TOKEN
}
};

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