Aller au contenu
GET /v1/mortgage

Mortgage PITI

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/fincalc-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}