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'
}
}
);
// Returns structured property data
{
"address": "123 Main St",
"owner": "John Smith",
"emv": 425000,
"score": 847,
"tags": ["pre-foreclosure"]
}