How it works
1
Statements generate monthly
Anchorage Digital produces subaccount and program-level statements each month, covering starting and ending balances and all transactions during the period.
2
Statements deliver automatically
End clients and wealth managers each receive their statements by email, and can also view or download them from the web dashboard.
3
Retrieve statements programmatically
Use the Statements API to list, fetch, and download statements without relying on the web dashboard.
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.Integration steps
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