For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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