Retrieve all transactions where a specific vault is either the sender or recipient. The vault address must belong to your organization. Supports all standard filtering, sorting, and pagination parameters.
| Parameter | Type | Required | Description |
|---|---|---|---|
vaultAddress | string | Yes | Blockchain address (0x..., 42 characters) |
| Parameter | Type | Description |
|---|---|---|
page | number | Page number for pagination |
limit | number | Items per page (1-100) |
status | string | Filter by status |
asset | string | Filter by asset symbol |
network | string | Filter by network name |
fromAddress | string | Filter by sender address |
toAddress | string | Filter by recipient address |
workflowId | string | Filter by Temporal workflow identifier |
userId | string | Filter by user ID |
organizationId | string | Filter by organization ID |
startDate | string | Filter by start date (ISO 8601) |
endDate | string | Filter by end date (ISO 8601) |
sortBy | string | Sort field (createdAt, updatedAt, timestamp, or value) |
sortOrder | string | Sort order: asc or desc |
The response is wrapped in an envelope: data contains the array of transactions and pagination contains paging metadata. Each transaction includes the same fields as the list transactions endpoint:
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
organizationId | UUID | Owning organization ID |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
contractAddress | string | Deployed contract address for contract deployments (nullable) |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
transactions:read
Retrieve all transactions where a specific vault is either the sender or recipient. The vault address must belong to your organization. Supports all standard filtering, sorting, and pagination parameters.
| Parameter | Type | Required | Description |
|---|---|---|---|
vaultAddress | string | Yes | Blockchain address (0x..., 42 characters) |
| Parameter | Type | Description |
|---|---|---|
page | number | Page number for pagination |
limit | number | Items per page (1-100) |
status | string | Filter by status |
asset | string | Filter by asset symbol |
network | string | Filter by network name |
fromAddress | string | Filter by sender address |
toAddress | string | Filter by recipient address |
workflowId | string | Filter by Temporal workflow identifier |
userId | string | Filter by user ID |
organizationId | string | Filter by organization ID |
startDate | string | Filter by start date (ISO 8601) |
endDate | string | Filter by end date (ISO 8601) |
sortBy | string | Sort field (createdAt, updatedAt, timestamp, or value) |
sortOrder | string | Sort order: asc or desc |
The response is wrapped in an envelope: data contains the array of transactions and pagination contains paging metadata. Each transaction includes the same fields as the list transactions endpoint:
| Field | Type | Description |
|---|---|---|
id | UUID | Unique transaction identifier |
createdAt | datetime | Transaction creation timestamp (ISO 8601, UTC) |
updatedAt | datetime | Last update timestamp (ISO 8601, UTC) |
workflowId | string | Workflow identifier for transaction orchestration |
senderAddress | string | Sender blockchain address (0x...) |
recipientAddress | string | Recipient blockchain address (0x...) |
value | string | Transaction value in human-readable format |
asset | string | Asset symbol (e.g., ETH, USDC) |
network | string | Network chain ID as string |
organizationId | UUID | Owning organization ID |
hash | string | Blockchain transaction hash (nullable until submitted) |
status | enum | Current lifecycle status (see Status Values below) |
failureReason | string | Failure description if status is FAILED (nullable) |
gasLimit | string | Maximum gas units allocated |
gasPrice | string | Gas price in Gwei (legacy transactions, nullable) |
gasUsed | string | Actual gas consumed (after confirmation) |
blockNumber | string | Block number where transaction was mined |
contractAddress | string | Deployed contract address for contract deployments (nullable) |
metadata | object | Additional transaction metadata (see Metadata Fields) |
auditLogs | array | Complete timeline of all transaction events |
transactions:read