calculatedMortgagePayment

The user calculated a mortgage payment via an online calculator.

The user calculated a mortgage payment via an online calculator.

FieldTypeRequiredDescription
downPaymentnumberNo

The buyer's down payment amount

listinglistingNo

The listing the user was viewing when the calculation was performed

paymentnumberNo

The buyer's calculated (or preferred) monthly payment

pricenumberNo

The amount to be financed

ratenumberNo

The interest rate

termnumberNo

The number of months in the loan

1/* calculatedMortgagePayment example */
2
3var data = {
4 "downPayment": 40000,
5 "listing": listing,
6 "price": 200000,
7 "rate": 5.25,
8 "term": 360
9};
10
11brytescore( "realestate.calculatedMortgagePayment", data );

Updated July 25, 2026