Loans

Learn how to integrate Veend Loan APIs

Veend Loan API allows you to process customer loans and repayment.

BASE_URL

The live (production) environment base URL is apply2.veendhq.com The test (sandbox) environment base URL is api2.veendhq.com

Get Customer Loan Balance

GET {{BASE_URL}}/users/{{USER_ID}}/balance

Headers

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

Last updated