Retrieve average price per sqft
Retrieves the average rental price per sqft in a given area.
Parameters​
search
- required​
Zipcode of the properties.
Code Example​
- NodeJS
GET - https://api.particlespace.com/api/v1/property/rental/pricepersqft
var axios = require('axios');
const BEARER_TOKEN = 'SET_ME';
var config = {
method: 'get',
url: 'https://api.particlespace.com/api/v1/property/rental/pricepersqft?search=64012',
headers: {
'Authorization': 'Bearer ' + BEARER_TOKEN
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});