List a user's loan applications
Retrieve all loan applications for a user
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loans/applications
Returns an array of objects, with each object representing a loan application
Path Parameters
Name
Type
Description
user_id*
string
The uuid of the user
{
"pagination": {
"offset": 0,
"limit": 25,
"total": 4
},
"data": [
{
"uuid": "05e7e541-95b0-4294-8374-9f341f1ae857",
"product": "BNPL",
"amount": 25000.0,
"term": null,
"purpose": null,
"details": null,
"credit_score_consent": false,
"created_at": "2024-02-19 11:28:45 PDT",
"credit_report_id": 570,
"offers": [
{
"uuid": "b94bc34a-add6-4756-839e-322e357ef307",
"product": "BNPL",
"apr": 0.0,
"amount": 50000.0,
"term": null,
"term_frequency": "MONTHLY",
"interest_rate": 0.0,
"origination_fee": 0.0,
"interest_only_period": null,
"interest_only_installment": null,
"interest_amount": null,
"installment": null,
"start_date": "2024-02-19",
"explanation": null,
"maturity_date": null
}
],
"status": {
"decision": "APPROVED",
"details": null
}
},
{...},
{...}
]
}Last updated