Skip to main content

Example webhook payloads for Portfolio Monitor

Example JSON payloads sent by Portfolio Monitor for asset updates like MLS changes, AVM updates, and more.

Updated over 2 weeks ago

Explore sample webhook payloads sent by Portfolio Monitor when asset updates occur. These examples demonstrate the structure and content of JSON payloads you can expect for events such as, valuation updates, propensity to list updates, and more. Use these samples to test your integrations and ensure your systems are ready to receive real-time property data alerts.

Example “AVM” update notification webhook payload

[
{
"address_id": "39109351",
"street_address": "6010 W Running Deer Trl",
"unit": "Unit B",
"city": "Phoenix",
"state": "AZ",
"zip": "85083",
"update": "AVM",
"avm_trigger_threshold": "0.25",
"avm_latest_value": "500000",
"date": "11/07/2024",
"property_explorer_link": "https://solutions.housecanary.com/pexp/search?slug=6010-W-Running-Deer-Trl-Phoenix-AZ-85083",
"avm": {
"address_id": 39109351,
"avm": 375000,
"reference_month": "2024-10-28",
"relative_to": "PORTFOLIO_CREATION",
"relative_change": 1.25,
"relative_to_avm": 300000
}
}
]

Example “LTV” update notification webhook payload

[
{
"address_id": "39109351",
"street_address": "6010 W Running Deer Trl",
"unit": "Unit B",
"city": "Phoenix",
"state": "AZ",
"zip": "85083",
"update": "LTV",
"date": "11/07/2024",
"property_explorer_link": "https://solutions.housecanary.com/pexp/search?slug=6010-W-Running-Deer-Trl-Phoenix-AZ-85083",
"ltv": {
"address_id": 39109351,
"as_of_month": "2024-10-28",
"loan_to_value": 0.9
}
}
]

Example “Open Lien” update notification webhook payload

[
{
"address_id": "39109351",
"street_address": "6010 W Running Deer Trl",
"unit": "Unit B",
"city": "Phoenix",
"state": "AZ",
"zip": "85083",
"update": "LIEN",
"lien_trigger_type": "CONVENTIONAL",
"date": "11/07/2024",
"property_explorer_link": "https://solutions.housecanary.com/pexp/search?slug=6010-W-Running-Deer-Trl-Phoenix-AZ-85083",
"lien": {
"address_id": 39109351,
"loan_type": "CONVENTIONAL",
"contract_date": "2022-11-14",
"amount": 1172500,
"due_date": "2052-12-05",
"interest_rate_used": 2.78,
"loan_term": 360,
"borrower": ["DAVID M JONES"],
"lender": "PACIFIC CREDIT UNION"
}
}
]

Example “Notice of Default” update notification webhook payload

[
{
"address_id": "39109351",
"street_address": "6010 W Running Deer Trl",
"unit": "Unit B",
"city": "Phoenix",
"state": "AZ",
"zip": "85083",
"update": "NOD",
"date": "11/07/2024",
"property_explorer_link": "https://solutions.housecanary.com/pexp/search?slug=6010-W-Running-Deer-Trl-Phoenix-AZ-85083",
"nod": {
"address_id": 39109351,
"recording_date": "2023-09-30"
}
}
]

Example “Propensity to List” update notification webhook payload

[
{
"address_id": "39109351",
"street_address": "6010 W Running Deer Trl",
"unit": "Unit B",
"city": "Phoenix",
"state": "AZ",
"zip": "85083",
"update": "NOD",
"date": "11/07/2024",
"property_explorer_link": "https://solutions.housecanary.com/pexp/search?slug=6010-W-Running-Deer-Trl-Phoenix-AZ-85083",
"propensity_to_list": {
"address_id": 39109351,
"propensity_to_list": 99
}
}
]

Did this answer your question?