Loans
Loan Reports
Column will generate daily snapshot summary reports for all loans on your platform. The cut-off time for daily snapshots is 7:00pm PT (inclusive). After daily summary reports are generated, you will get webhook events. All reports are available in CSV, JSON and Parquet formats. You can use our Document API to obtain daily summary reports. You can also download them directly from our Dashboard. If you want to list all available daily summary reports, please use our Reporting API.
- Report type:
loan_daily_summary - Webhook event:
reporting.loan_daily_summary.completed
To check the population of loans for purchase at the beginning of each day and total purchase prices, you can filter loan_daily_summary reports for loans with non-zero sale_price. You can also reference the loan sale summary endpoint.
Each row in daily summary reports contains a loan with the below details. Loans that have been paid off or canceled are shown only in the daily reports up to their paid-off/cancellation day and are excluded from reports thereafter.
Note
All balance values are in the main unit of loan currencies (e.g., dollars for USD).
currency_codeUSD)daily_accrued_feeeffective_datedaily_accrued_interesteffective_datedaily_disbursed_principaleffective_datedaily_fee_rateeffective_date (e.g., 0.0001 for 0.01%)daily_interest_rate0.001 for 0.10%)daily_paid_feeeffective_datedaily_paid_interesteffective_datedaily_paid_principaleffective_datedaily_retained_accrued_interesteffective_datedaily_retained_paid_interesteffective_datedaily_retained_paid_principaleffective_datedaily_sold_interesteffective_datedaily_sold_principaleffective_dateeffective_dateYYYY-MM-DDloan_idloan_program_idretained_by_columnsale_priceeffective_datestatustotal_feetotal_interesttotal_principaltotal_retained_interesttotal_retained_principaltotal_seasoned_feetotal_seasoned_interesttotal_seasoned_principaleffective_dateSample Report in JSON Format
[
{
"currency_code": "USD",
"daily_accrued_fee": "17.1",
"daily_accrued_interest": "171",
"daily_disbursed_principal": "18000",
"daily_fee_rate": "0.0001",
"daily_interest_rate": "0.001",
"daily_paid_fee": "0",
"daily_paid_interest": "0",
"daily_paid_principal": "0",
"daily_paid_retained_interest": "0",
"daily_retained_accrued_interest": "171",
"daily_sold_interest": "0",
"daily_sold_principal": "0",
"effective_date": "2025-06-23",
"loan_id": "loan_2zElxSDsVKavI303PZoVHnoEDFN",
"loan_program_id": "lpgm_30ynUQLwsKxi02qif7jyI1I5CjO",
"retained_by_column": false,
"sale_price": "136979.2",
"status": "current",
"total_fee": "114",
"total_interest": "1140",
"total_principal": "171000",
"total_retained_interest": "1140",
"total_retained_principal": "171000",
"total_seasoned_fee": "108.8",
"total_seasoned_interest": "1088",
"total_seasoned_principal": "136000"
},
{
"currency_code": "USD",
"daily_accrued_fee": "17.1",
"daily_accrued_interest": "171",
"daily_disbursed_principal": "18000",
"daily_fee_rate": "0.0001",
"daily_interest_rate": "0.001",
"daily_paid_fee": "0",
"daily_paid_interest": "0",
"daily_paid_principal": "0",
"daily_paid_retained_interest": "0",
"daily_retained_accrued_interest": "171",
"daily_sold_interest": "0",
"daily_sold_principal": "0",
"effective_date": "2025-06-23",
"loan_id": "loan_2zElxUD5sXlpFoYM3xFZ0KHspvR",
"loan_program_id": "lpgm_30ynUWXxIfQOvLV1PRzJ2wFi3DZ",
"retained_by_column": false,
"sale_price": "91819",
"status": "current",
"total_fee": "114",
"total_interest": "1140",
"total_principal": "171000",
"total_retained_interest": "1140",
"total_retained_principal": "171000",
"total_seasoned_fee": "91",
"total_seasoned_interest": "910",
"total_seasoned_principal": "91000"
}
]