Export Transactions
Export transactions as a CSV file (v2, ClickHouse-backed).
Returns up to 10,000 rows matching the given filters. Accepts the same filter
and sort params as the list endpoint. Response is a downloadable text/csv file.
Authorizations
Bearer authentication with a personal access token (prefix pat_). Generate tokens in the Truv web app under Settings → API keys.
Query Parameters
Start date for the transaction window (inclusive, YYYY-MM-DD).
"2025-01-01"
End date for the transaction window (inclusive, YYYY-MM-DD). Defaults to today.
"2025-12-31"
Comma-separated category slugs to include (e.g. 'income,transfer'). Omit to include all categories.
1000"income,transfer"
Filter by transaction type. Omit to include both debits and credits.
DEBIT, CREDIT "DEBIT"
Comma-separated account IDs to include. Omit to include all accounts.
"acc_001,acc_002"
Minimum transaction amount (absolute value). Inclusive.
"10.00"
Maximum transaction amount (absolute value). Inclusive.
"500.00"
Case-insensitive substring match on merchant name or description.
"starbucks"
Comma-separated category slugs to exclude (e.g. 'transfer,uncategorized').
1000Sort transactions by date or absolute amount.
date, amount "date"
Sort direction: ascending or descending.
asc, desc "desc"
Response
CSV export of up to 10,000 transactions.