/v1/mortgage
Mortgage PITI
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/fincalc-api/v1/mortgage" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fincalc-api/v1/mortgage", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fincalc-api/v1/mortgage");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fincalc-api/v1/mortgage",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"monthly": {
"hoa": 0,
"pmi": 0,
"total": 2522.62,
"insurance": 100,
"property_tax": 400,
"principal_interest": 2022.62
},
"term_years": 30,
"total_paid": 728142.36,
"annual_rate": 6.5,
"loan_amount": 320000,
"total_interest": 408142.36
},
"meta": {
"timestamp": "2026-06-02T16:52:02.838Z",
"request_id": "8b79178f-d519-4f50-bfe0-5f94643c82af"
},
"status": "ok",
"message": "Mortgage PITI",
"success": true
}