v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBLoanApplications
Preview amortisation schedule
Computes a deterministic declining-balance schedule for the supplied loan parameters without persisting any data.
post/api/v1/loan-applications/preview-schedule
Request body
Example request
{
"annualInterestRate": "0.12000000",
"dayCountConvention": "ACT/365",
"gracePeriodDays": 30,
"jurisdictionCode": "BR",
"principalAmount": "50000.00",
"startDate": "2026-06-14T00:00:00Z",
"termMonths": 24
}Response
OK
Example response
{
"dayCountConvention": "ACT/365",
"effectiveCostPreview": {
"effectiveCostAnnualPct": "12.00000000",
"effectiveCostMonthlyPct": "0.94888100"
},
"installments": [
{
"dueDate": "2026-06-14",
"interestAmount": "234.56",
"number": 1,
"principalAmount": "1000.00",
"remainingBalance": "49000.00",
"totalAmount": "1234.56"
}
],
"jurisdictionCode": "BR",
"profileVersion": "1.0.0",
"totalInterest": "4321.00",
"totalPrincipal": "50000.00"
}