Retrieve a loan

Retrieve a loan

GET https://sandbox-api.stilt.com/v1/users/{user_id}/loan/{loan_id}

Returns the loan object information for a single loan

Path Parameters

{
    "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": []
}

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

Last updated