List all loans

List all a loan

GET https://sandbox-api.nanol.com/v1/users/loans

Returns an array of objects, which each object corresponding to a loan object associated with your API keys

{
    "pagination": {
        "offset": 0,
        "limit": 25,
        "total": 1
    },
    "data": [
        {
            "user_uuid": "32d7d46c-7fa7-434c-9e19-ff036d0c4060",
            "uuid": "61f965d8-af66-4bcc-a592-b6967b519d36",
            "product": "LOAN",
            "origin_loan_uuid": null,
            "external_id": null,
            "region": "LT",
            "amount": 80000.0,
            "interest_rate": 0.0,
            "apr": 0.0,
            "term": 6,
            "term_frequency": "MONTHLY",
            "interest_only_period": null,
            "opening_date": "2024-02-27",
            "repayments_start_date": null,
            "repayments_end_date": null,
            "maturity_date": null,
            "autopay_enabled": false,
            "origination_fee": 0.0,
            "finance_charge": null,
            "total_repayment_amount": null,
            "interest_amount": null,
            "risk_grade": null,
            "nls_committed_at": "2024-02-27 16:05:59 WAT",
            "status": "ACTIVE",
            "delinquent": false,
            "installments": [],
            "user_email": "[email protected]",
            "user_name": "Charlie Murphy"
        }
    ]
}

Last updated