Skip to main content
GET
/
api
/
v1
/
mortgage
/
loan-calculation
Mortgage Loan Calculation
curl --request GET \
  --url https://us-red-property-data.p.rapidapi.com/api/v1/mortgage/loan-calculation \
  --header 'x-rapidapi-key: <api-key>'
{
  "success": true,
  "cost": 1,
  "data": {
    "monthly_cost": 7920,
    "total_payment": 2239407,
    "monthly_cost_items": [
      {
        "amount": 6221,
        "display_name": "Principal & interest",
        "type": "PRINCIPAL_AND_INTEREST"
      }
    ],
    "amortization_schedule": [
      {
        "interest": 62092,
        "principal": 12555
      }
    ]
  }
}

Authorizations

x-rapidapi-key
string
header
required

Rapid API Key

Query Parameters

down_payment
string
required

Down payment

Minimum string length: 1
Example:

"258000"

hoa_fees
string
required

Hoa fees

Minimum string length: 1
Example:

"0"

home_insurance_rate
string
required

Home insurance rate

Minimum string length: 1
Example:

"0.0033"

interest_rate
string
required

Interest rate

Minimum string length: 1
Example:

"0.0605"

loan_type
string
required

Loan type

Minimum string length: 1
Example:

"THIRTY_YEAR_FIX"

price
string
required

Price

Minimum string length: 1
Example:

"1290000"

property_tax_rate
string
required

Property tax rate

Minimum string length: 1
Example:

"0.0125"

Response

Success

success
boolean
Example:

true

cost
number

Cost of the request

Example:

1

data
object