Loans
Learn how to integrate Veend Loan APIs
Veend Loan API allows you to process customer loans and repayment.
Get Customer Loan Balance
GET
{{BASE_URL}}/users/{{USER_ID}}/balance
Headers
Name
Type
Description
x-tag*
veend-xtag
Sample Success Response
{
"status": "success",
"data": {
"amount": 50000,
"totalExpectedRepayment": 56250,
"totalRepayment": 0,
"totalOutstanding": 56250
}
}
Get Customer Loan Details
Get detailed summary of customer loans with your lender_id
GET
{{BASE_URL}}/loans/findMyLoans/find?loanId={{LENDER_ID}}&disbursementStatus=completed
Query Parameters
Name
Type
Description
loanId*
string
Lender Id
disbursementStatus
completed
This filter returns only disbursed loans if set to completed
Last updated