/v1/schedule
Amortization split
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}