Calculate complete mortgage payment breakdowns including monthly payment, total interest, property tax, insurance, and HOA fees. Get full amortization schedules showing principal vs interest for each payment over the life of the loan.
{
"status": "ok",
"error": null,
"data": {
"amount": 570000,
"downpayment": 0,
"rate": 6.8,
"years": 30,
"total_interest_paid": 767750.49,
"total_loan_payment": 1337750.49,
"interestRatio": 57.39,
"monthly_payment": {
"total": 3715.97,
"mortgage": 3715.97,
"property_tax": 0,
"hoa": 0,
"home_insurance": 0
},
"annual_payment": {
"total": 44591.68,
"mortgage": 44591.68,
"property_tax": 0,
"hoa": 0,
"home_insurance": 0
},
"formatted": {
"amount": "$570,000",
"monthlyPayment": "$3,715.97",
"totalInterestPaid": "$767,750.49",
"totalLoanPayment": "$1,337,750.49"
},
"amortization_schedule": [
{
"month": 1,
"interest_payment": 3230,
"principal_payment": 485.97,
"remaining_balance": 569514.03
},
{
"month": 2,
"interest_payment": 3227.25,
"principal_payment": 488.73,
"remaining_balance": 569025.3
},
{
"month": 3,
"interest_payment": 3224.48,
"principal_payment": 491.5,
"remaining_balance": 568533.8
}
]
}
}






Calculate complete mortgage payment breakdowns including monthly payment, total interest, property tax, insurance, and HOA fees. Get full amortization schedules showing principal vs interest for each payment over the life of the loan.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/mortgagecalculator?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ amount, downpayment, rate, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseEmbed our Mortgage Calculator API into property listings. Let buyers input their down payment and see personalized payment estimates including estimated taxes and insurance.
Use our API to calculate multiple scenarios in parallel. Show side-by-side comparisons of monthly payments, total interest, and total cost for different terms and rates.
Our API returns a complete amortization schedule showing each month's principal payment, interest payment, and remaining balance. Perfect for visualizing the payoff journey.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/mortgagecalculator", { method: "POST", headers: { "x-api-key": "YOUR_API_KEY" } });
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog