Search for property data
Retrieves property records by using the search route. You can also use the interface on https://roperty.org/ to see what types of searching criteria is available.
Paramaters​
search
- required​
Paramaters of the property search.
page_limit
- optional​
Number of records returned on each page. Defaults to 10.
page
- optional​
Page number of data returned. Defaults to first page. If the value is greater than the last page found, the last page is returned.
Code Example​
- NodeJS
GET - https://api.roperty.org/api/v1/properties/rental
var axios = require('axios');
const BEARER_TOKEN = 'SET_ME';
var config = {
method: 'get',
url: 'https://api.particlespace.com/api/v1/properties/rental?search=808&page_limit=5&page=2',
headers: {
'Authorization': 'Bearer ' + BEARER_TOKEN
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});