Retrieve a statement

Retrieve a statement

GET https://sandbox-api.nanol.com/v1/users/{user_id}/loans/{loan_id}/statements

Returns a statement object including the loan's balance, due dates, and statement documents. This endpoint should not return an error as long as the loan exists.

Path Parameters

Name
Type
Description

user_id*

string

The uuid of the user

loan_id*

string

The uuid of the loan

{
    "next_billing_date": "2024-02-25",
    "principal_balance": 80000.0,
    "interest_balance": 0.0,
    "payoff_balance": 80000.0,
    "days_past_due": 0,
    "past_due_balance": 0.0,
    "payment_amount_due": 13333.35,
    "payment_due_date": "2024-07-27",
    "suspense_balance": 0.0,
    "statements": [],
    "loan_amount": 80000.0,
    "amortization_schedule": [
        {
            "IsHistory": 1,
            "PaymentDate": "2024-01-27",
            "LoanAmount": 80000.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 0.0,
            "OtherAmount": 0.0,
            "PaymentAmount": 0.0,
            "BalanceAmount": 80000.0,
            "PaymentNumber": 0,
            "MobilepaymentTransactionIds": []
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-02-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 13333.33,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.33,
            "BalanceAmount": 6666.67,
            "PaymentNumber": 1,
            "MobilepaymentTransactionIds": null
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-03-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 13333.33,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.33,
            "BalanceAmount": 53333.34,
            "PaymentNumber": 2,
            "MobilepaymentTransactionIds": null
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-04-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 13333.33,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.33,
            "BalanceAmount": 40000.01,
            "PaymentNumber": 3,
            "MobilepaymentTransactionIds": null
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-05-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 13333.33,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.33,
            "BalanceAmount": 26666.68,
            "PaymentNumber": 4,
            "MobilepaymentTransactionIds": null
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-06-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 1333.33,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.33,
            "BalanceAmount": 13333.35,
            "PaymentNumber": 5,
            "MobilepaymentTransactionIds": null
        },
        {
            "IsHistory": 0,
            "PaymentDate": "2024-07-27",
            "LoanAmount": 0.0,
            "InterestAmount": 0.0,
            "PrincipalAmount": 13333.35,
            "OtherAmount": 0.0,
            "PaymentAmount": 13333.35,
            "BalanceAmount": 0.0,
            "PaymentNumber": 6,
            "MobilepaymentTransactionIds": null
        }
    ]
}

Last updated