Get Loans
The investor can use these endpoints to fetch details of their loans, including those in pending, completed, in collection, or in default status.
Get Current Loans
HTTPS Request
Headers
Name
Type
Description
{
"count":2,
"next":null,
"previous":null,
"results":[
{
"id": 1,
"borrower_card_color": 3,
"loan_amount": 103213.009,
"payment_terms": 4,
"monthly_payment_amount": 40.5,
"loan_return": 123213.009,
"is_approved": True,
"loan_paid_off": False,
"loan_balance": 2221.21,
"interest_rate": 0.03,
"lender": {
// ... lender data ...
},
"next_payment_date": "2018-10-16 00:00:00+00:00",
"borrower": {
// ... borrower data ...
},
"status": "funded",
"loan_due_amount": 900.01,
"created_date": "2018-10-16 00:00:00+00:00",
"original_debt": 122.031,
"collected_amount": 900.1,
"remaining_debt": 100,
"collection_fee": 5,
"collected_percentage": 70.0,
"net_collected": 800,
"loan_request_id": 2,
}, ...
]
}Sample Request
Get Completed Loans
HTTPS Request
Headers
Name
Type
Description
Get Collection Loans
HTTPS Request
Headers
Name
Type
Description
Get Default Loans
HTTPS Request
Headers
Name
Type
Description
Response Parameters
Parameter
Type
Description
Last updated