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,
  "next_accrual_date": "2026-01-21T10:04:01.837Z"
}

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:

"10"

outstanding_interest
string
Example:

"0.552"

total_outstanding
string
Example:

"10.552"

can_repay_principal
boolean
Example:

true

can_repay_interest
boolean
Example:

true

next_accrual_date
string<date-time>
Example:

"2026-01-21T10:04:01.837Z"