Affordability Check
Affordability API evaluates whether a customer can reasonably afford a requested short-term loan based on their financial profile. By providing the loan amount, number of instalments, and duration in days, the API calculates a simple affordability score and returns a clear decision (approve, review, or decline) along with a reason if the loan is not affordable. This helps lenders make quick, transparent, and responsible credit decisions.

Return a simple affordability score and suggested decision for the requested loan.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
numberOfInstalmentsinteger · min: 1 · max: 12RequiredExample:
3loanDurationDaysinteger · min: 1 · max: 365RequiredExample:
90emailstringRequired
Customer registered email
Responses
200
Affordability result
application/json
401
Unauthorized
404
Customer or transactions not found
422
Invalid request (e.g., negative amount)
post
/api/v2/partner/affordability/checkLast updated