Direct Access to Your
Property List
The Properties API gives your technical team programmatic access to your 8020REI property data. Retrieve filtered lists, scores, and owner details via a secure REST endpoint.
const response = await fetch(
'/api/v1/public/properties',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',
'User-Agent': 'MyApp/1.0'
},
body: JSON.stringify({
columns: ['address', 'city', 'state', 'total_value'],
per_page: 10
})
}
);
// Returns structured property data
{
"address": "123 Main St",
"city": "Austin",
"state": "TX",
"total_value": 425000
}