Naar de inhoud
GET /v1/schedule

Amortization split

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/loan-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}