calculate_schedule
Calculates a loan's amortization schedule from principal, interest rate, and monthly tenure. Returns a month-by-month breakdown of payments.
Instructions
Retrieve the amortization schedule for a loan configuration.
Args: principal: Loan amount. interestRate: Annual interest rate expressed in percent (e.g. 9.5). tenure: Total tenure in months. calculation_method: Backend calculation strategy (for example, "reducing").
Returns: Backend JSON payload describing the amortization schedule or an error structure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tenure | Yes | ||
| principal | Yes | ||
| interestRate | Yes | ||
| calculation_method | No | reducing |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |