List all loans

List all a loan

GET https://sandbox-api.stilt.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,
            "state": "TX",
            "amount": 8000.0,
            "interest_rate": 0.0,
            "apr": 0.0,
            "term": 6,
            "term_frequency": "MONTHLY",
            "interest_only_period": null,
            "opening_date": "2022-07-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": "2022-07-27 16:05:59 US/Pacific",
            "status": "ACTIVE",
            "delinquent": false,
            "installments": [],
            "user_email": "cmurphyd211@stilt.com",
            "user_name": "Charlie Murphy"
        }
    ]
}

Be sure to omit `Content-Type': 'application/json' from the header of this request to avoid a 500 error

Last updated