- Web dashboard statement access
- Statement components
- End-client monthly subaccount statements
- Wealth manager monthly statements
- Trade confirmation statements
- Statements API
Web dashboard access
All wealth manager and end-client statements are available on the web dashboard under the Reporting page. Click the PDF icon to download any statement.Statement components
Each statement includes:- Starting and ending balance totals — holdings at the start and end of the month.
- Transactions by subaccount — all activity during the period.
End-client monthly subaccount statements
In accordance with its custody obligations, Anchorage Digital Bank sends monthly statements directly to each end client at the email collected during due diligence. These cover all transactions and balances by subaccount.Wealth manager monthly statements
Wealth managers also receive statements via email. Statements are additionally available for download on the Anchorage Digital web dashboard.Wealth manager: Trade confirmations
Wealth managers receive trade confirmations from Anchorage Hold containing trading and brokerage fee details, including a breakdown of settlements across each subaccount. Wealth managers are responsible for disclosing trading fees to their end clients.Statements API
Statements are also available programmatically, so you can pull and archive them without relying on the web dashboard.Step 1: List statement types
GET /v2/statement-types
Step 2: List statements
GET /v2/statements
Filter by typeIds, customerIds, ids, or a createdAfter/createdBefore date range. Supports afterId/limit cursor pagination.
Step 3: Get statement details
GET /v2/statements/{statementId}
Step 4: Download the statement PDF
GET /v2/statements/{statementId}/download
Returns the statement as a binary PDF (application/pdf), not a JSON envelope.
Request