/v1/schedule
Amortization split
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/loan-api/v1/schedule" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/loan-api/v1/schedule", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/loan-api/v1/schedule");
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/loan-api/v1/schedule",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Each payment: interest = balance·r, principal = M − interest. Balance falls until it reaches zero on the final payment.",
"inputs": {
"payments": 360,
"principal": 200000,
"payment_number": 1,
"annual_rate_pct": 6
},
"monthly_payment": 1199.1,
"payment_interest": 1000,
"payment_principal": 199.1,
"remaining_balance": 199800.9,
"cumulative_interest": 1000,
"cumulative_principal": 199.1
},
"meta": {
"timestamp": "2026-06-04T18:38:09.080Z",
"request_id": "9987732b-f887-45f5-9ef5-54f25f6d4e1f"
},
"status": "ok",
"message": "Amortization split",
"success": true
}