Skip to main content
GET
/
api
/
v1
/
liquidity
/
management
/
repayments
/
estimate
Estimate Repayment Amount
curl --request GET \
  --url https://api.mansafinance.co/api/v1/liquidity/management/repayments/estimate \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <api-key>'
{
  "principal_balance": "1499",
  "outstanding_interest": "3.3984000000000005",
  "total_outstanding": "1502.3984",
  "can_repay_principal": true,
  "can_repay_interest": true
}

Authorizations

x-api-key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Query Parameters

type
enum<string>
required
Available options:
interest,
principal,
penalty
loan_id
string<uuid>
required
limit
integer
default:50
page
integer
default:1

Response

Estimate list

principal_balance
string
Example:

"1499"

outstanding_interest
string
Example:

"3.3984000000000005"

total_outstanding
string
Example:

"1502.3984"

can_repay_principal
boolean
Example:

true

can_repay_interest
boolean
Example:

true