curl --request GET \
--url https://api.mytruv.com/v1/users/balance-history \
--header 'Authorization: Basic <encoded-value>'{
"time_series": [
{
"date": "2025-11-03",
"assets": "98635.00",
"liabilities": "58320.75",
"net_worth": "40314.25"
}
],
"date_range": "3M",
"start_date": "2025-11-01",
"end_date": "2026-02-01"
}Get historical balance time series.
Returns assets, liabilities, and net worth data points over time. Supports filtering by link IDs or account IDs, and configurable date range and aggregation period. Returns 404 if no balance history data is available.
curl --request GET \
--url https://api.mytruv.com/v1/users/balance-history \
--header 'Authorization: Basic <encoded-value>'{
"time_series": [
{
"date": "2025-11-03",
"assets": "98635.00",
"liabilities": "58320.75",
"net_worth": "40314.25"
}
],
"date_range": "3M",
"start_date": "2025-11-01",
"end_date": "2026-02-01"
}Use user_id as username and access_token as password.
["d192a4f1cc7f4f05a105c9dd8ab703fb"]["545b8f1b114b4d2188998b5c5a5ab79e"]Supported date ranges for balance history queries.
1M, 3M, 6M, 1Y, ALL Aggregation granularity for balance history data points.
day, week, month Successful Response
Balance history time series showing assets, liabilities, and net worth over time.
Chronologically ordered data points.
Show child attributes
Date range code used for this query.
"3M"
Start date of the time series (YYYY-MM-DD).
"2025-11-01"
End date of the time series (YYYY-MM-DD).
"2026-02-01"
Was this page helpful?