Get Transactions
Get bank transactions across all connected accounts.
Returns transactions within the specified date range from all linked bank accounts.
Supports optional pagination (pass page query param) and category filtering.
When paginated, next and previous URLs are included in the response.
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.
Authorizations
Bearer authentication with a personal access token (prefix pat_). Generate tokens in the MyTruv web app under Settings > Sharing.
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 filter (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"
Sort transactions by date or absolute amount.
date, amount "date"
Sort direction: ascending or descending.
asc, desc "desc"
Page number for paginated results (1-based). Omit to fetch all transactions at once.
x >= 11
Number of transactions per page. Min 10, max 500.
10 <= x <= 500100