portfolio.transactions
Methods exposed through client.portfolio.transactions.
history
Fetches historical transactions for wallet addresses across supported networks. Alchemy documents this endpoint as beta and recommends migrating to alchemy_getAssetTransfers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
TransactionHistoryRequest
|
Request payload. |
required |
validate
|
bool | None
|
Validation override for this request. |
None
|
Returns:
| Type | Description |
|---|---|
TransactionHistoryResponse
|
The validated endpoint response. |
References
Source code in pkg/src/alchemy/api/portfolio/transactions/history.py
history_paged
Paged version of the transaction history endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
request
|
TransactionHistoryBaseRequest
|
Request payload. |
required |
validate
|
bool | None
|
Validation override for each request. |
None
|
Returns:
| Type | Description |
|---|---|
PaginatedResponse[PortfolioTransaction, str]
|
An async iterable and awaitable paginated response over historical transactions. |