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 there after.

Note

All balance values are in the main unit of loan currencies (e.g., dollars for USD).

ColumnDescriptionType
currency_codeCurrency of the loan (e.g., USD)string
daily_accrued_feeNew servicing fees payable to your platform accrued on the effective_datestring
daily_accrued_interestNew interest receivable for Column and your platform accrued on the effective_datestring
daily_disbursed_principalNew principal receivable disbursed on the effective_datestring
daily_fee_rateDaily servicing fee rate on the effective_date (e.g., 0.0001 for 0.01%)string
daily_interest_rateDaily interest rate on the effective_date (e.g., 0.001 for 0.10%)string
daily_paid_feeNew servicing fees payable paid to your platform for loan sales on effective_datestring
daily_paid_interestNew interest receivable paid for Column and your platform on effective_datestring
daily_paid_principalNew principal receivable paid for Column and your platform on effective_datestring
daily_retained_accrued_interestNew interest receivable for Column only accrued on effective_datestring
daily_retained_paid_interestNew interest receivable paid for Column only on effective_datestring
daily_retained_paid_principalNew principal receivable paid for Column only on effective_datestring
daily_sold_interestNew interest receivable sold to your platform on effective_datestring
daily_sold_principalNew principal receivable sold to your platform on effective_datestring
effective_dateDate of this summary. Format: YYYY-MM-DDstring
loan_idID of the loanstring
loan_program_idID of the loan programstring
retained_by_columnIndicates if the loan is retained by Columnboolean
sale_priceSale price at the end of the effective_datestring
statusStatus of the loanstring
total_feeTotal servicing fees payable to your platformstring
total_interestTotal interest receivable for Column and your platformstring
total_principalTotal principal receivablestring
total_retained_interestTotal interest receivable for Column onlystring
total_retained_principalTotal principal receivable for Column onlystring
total_seasoned_feeTotal seasoned servicing fees payable that are available to be paid to your platform on loan salesstring
total_seasoned_interestTotal seasoned interest receivable available for salestring
total_seasoned_principalTotal seasoned principal receivable available for sale on the effective_datestring

Sample 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"
  }
]