Skip to main content

Documentation Index

Fetch the complete documentation index at: https://help.mytruv.com/llms.txt

Use this file to discover all available pages before exploring further.

The Balance History response provides chronologically ordered data points tracking assets, liabilities, and net worth. Supports filtering by link, account, date range, and time period.

Response attributes

AttributeTypeDescription
time_seriesarray of objectsChronologically ordered data points
date_rangestringDate range code used for this query (e.g. 3M, 6M, 1Y)
start_datestringStart date of the time series (YYYY-MM-DD)
end_datestringEnd date of the time series (YYYY-MM-DD)

Time series point attributes

AttributeTypeDescription
datestringDate of this data point (YYYY-MM-DD)
assetsstringTotal asset balance
liabilitiesstringTotal liability balance
net_worthstringNet worth (assets minus liabilities)

Endpoints


Example response

{
  "time_series": [
    {
      "date": "2025-11-03",
      "assets": "98635.00",
      "liabilities": "58320.75",
      "net_worth": "40314.25"
    },
    {
      "date": "2025-11-10",
      "assets": "99100.00",
      "liabilities": "58100.00",
      "net_worth": "41000.00"
    }
  ],
  "date_range": "3M",
  "start_date": "2025-11-01",
  "end_date": "2026-02-01"
}