Fetch Transfer History
The investor can use this endpoint to fetch their transfer history on Lenme.
get
https://api.lenmo.app/api/v3
/transfer_history/
cURL
Python
curl -X GET "https://api.lenmo.app/api/v3/transfer_history/"
-H "accept: application/json"
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
1
import requests
2
import json
3
4
access_token = # Valid Token
5
6
#Fetch the transfer history for the investor
7
url = 'https://api.lenmo.app/api/v3/transfer_history/'
8
9
headers = {
10
'Accept': 'application/json',
11
'Authorization' : 'Bearer {}'.format(access_token)
12
}
13
14
r = requests.get(url, headers=headers)
15
16
print(r.text)
Parameter | Type | Description |
---|---|---|
date | Date | UTC time of the transfer date |
transactions | List of transfer obj. | A list of transactions grouped by transfer date |
TransferHistory.transfer_status | String | Status of a transfer .e.g pending , processed or failed |
TransferHistory.transfer_type | String | Type of a transfer .e.g add_money , withdrawal , fund_loans , monthly_payments , collection |
TransferHistory.transfer_amount | String | Amount of transfer in USD |
TransferHistory.transfer_source_dest | String | Indicates the transfer initiation either to or from source |
TransferHistory.loan_request_id | Long | Id of the loan request associated with the transfer |
TransferHistory.loan_id | Long | Id of the loan associated with the transfer |
TransferHistory.borrower_id | Long | Id of the borrower associated with the transfer |
Good to know: We advise that you refresh this en
Last modified 6mo ago