Skip to main content
POST
Calculates the APR for a loan application, providing customers with a clear understanding of the total cost of borrowing including interest and fees.

Request Headers

string
required
The JWT Access Token obtained from the /login or /refresh-token endpoint.
string
required
Unique idempotency key for the request to prevent duplicate processing.
string
required
The date and time at which the request was initiated (ISO 8601 format).
string
required
The IP address of the customer making the request.
string
required
Unique identifier for the interaction/session.
string
default:"application/json"
required
Must be application/json.

Request Body

number
required
The loan amount for which to calculate APR.
number
required
Annual interest rate (as a percentage, e.g., 12.5 for 12.5%).
number
required
Loan tenure in months.
number
Processing fee amount (if applicable).
array
Array of other fees applicable to the loan.
string
Optional loan product ID to use product-specific fee structure.

Response

Returns the calculated APR and related cost information.
string
default:"SUCCESS"
Overall status of the API request.
object
APR calculation results.

Code Examples