Get Borrower Loan History
This endpoint is used to retrieve a borrower's loan history.
HTTPS Request
Path Parameters
Name
Type
Description
Headers
Name
Type
Description
Sample Request
curl -X GET "https://api.lenmo.app/api/v3/loan_requests/50/borrower_loan_history/" \
-H "accept: application/json" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "X-Timestamp: REQUEST_TIMESTAMP" \
-H "X-HMAC: REQUEST_HMAC"
import requests
loan_request_id = 50
url = f'https://api.lenmo.app/api/v3/loan_requests/{loan_request_id}/borrower_loan_history/'
headers = {
"Accept": "application/json",
"X-API-KEY": "YOUR_API_KEY",
"X-Timestamp": "REUQUEST_TIMESTAMP",
"X-HMAC": "REQUEST_HMAC",
}
r = requests.get(url, headers=headers)
print(r.json())Sample Response
Response Parameters
Parameter
Type
Description
Last updated