Output types
Transactions list
JSON ledger of credits and debits for an account, via the API
Transaction report
CSV of all transactions for an account, via the dashboard
Account statement
PDF statement for an account, downloaded via the dashboard
Transactions list (API, JSON)
Fetch the ledger of credits and debits on an account in JSON format. Use it for programmatic reconciliation, custom reporting, and building balance time series.2023-01-01
/api/service/transaction/list in the API Reference →
Point-in-time balances
Each transaction includes the account balance immediately before and after the movement. Use these to reconstruct balances at any point in time:- For the balance at midnight yesterday, fetch the first transaction after that time and read its
beforebalance. - For a balance chart, stitch
afterbalances over time.
Transaction date
The transaction date is when the movement is recorded on the Augustus ledger. For credits, this is when funds settled. For debits, this is when the payout was initiated.Transaction report (Dashboard, CSV)
The transaction report is a CSV export of all transactions for a single account over a selected period. Use it for spreadsheet-based reconciliation and finance workflows. POST/api/service/transaction/list in the API Reference →
Each row represents a money movement including amount, direction, counterparty, related resource (deposit, payout, return, conversion), and timestamps.
Download from the Augustus Dashboard under Accounts → Account details → Statement → Transaction report.
Account statement (Dashboard, PDF)
An account statement is a PDF scoped to a single account and currency, suitable for audit and third-party sharing. Download one per account you want to reconcile:- EUR — operating account statement in EUR, covering IBAN-based deposits, payouts, and returns.
- GBP — operating account statement in GBP, covering Faster Payments, CHAPS, and sort code / account number activity.
- USD — operating account statement in USD, covering ACH, Fedwire, and ABA-based activity.
- USDC — stablecoin wallet statement, covering on-chain deposits and payouts across supported chains (Ethereum, Solana, Polygon).
- Opening and closing balance for the reporting period.
- Every credit and debit with timestamp, counterparty, and reference.
Reports and statements reflect settled activity. Pending transactions appear once they settle. See Balances for real-time available and pending balances.