Jump to
Ctrl
+
/

List Transactions by Vault

GET
/vaults/{vaultId}/transactions

Through this endpoint customers can obtain details on transactions by vault id.

Path Parameters

vaultId string Required

The sepcific Vault ID.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

limit integer Optional

Defines how many items should be returned in the response per page basis.

Default : 50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2025-09-23
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
limit integer Required

Defines how many items should be returned in the response per page basis.

50
startingAfter string Optional

Defines the id of the previous listed record id from which the current list should start from.

5ca21f92cf5431000105d1a7
hasMore boolean Required

Defines whether or not there are more elements available after this set.

true
items array Items (object) Required
blockchain string Required

The blockchain protoocl, e.g Bitcoin, Ethereum, Binance-smart-chain, Optimism, Solana, Tron.

ethereum
createdTimestamp integer Required

When this transaction was created.

1705399159
direction string Required

The direction of the transaction in this Vault, incoming or outgoing transaction.

incoming
hasTokenTransfer string Required

If this transaction has any tokens transfers.

false
id string Required

The transaction ID in Vaultody, this is needed for pagination/load more functionality.

654ba3af9e8dd80901f17347
isInternal string Required

If this transaction has any Internal Transactions.

false
minedInBlockHeight string Required

The block height this transaction was mined in.

1234324
network string Required

The blockchain network e.g mainnet, testnet, sepolia.

mainnet
recipients array Items (object) Required

Recipients are all addresses receive assets in this transaction.

address string Required

The public address itself.

0xd2070342a1a5ce24930ec6582b3db846458525a0
addressType string Optional

The address type, e.g deposit, smart.

deposit
amount string Required

The amount received.

0.0003
amountUnit string Required

The unit symbol e.g. BTC, TRX, BNB.

ETH
isVaultAddress string Required

If this address belongs to this Vault or not.

true
label string Optional

The label of the address.

Address name
senders array Items (object) Required

Senders are all addresses send assets in this transaction.

address string Required

The public sender's address.

0xa94b8eca8703ad2804cb204976ac023b612c407e
addressType string Optional

The address type , e.g. deposit, smart.

deposit
amount string Required

The amount sent.

0.0003
amountUnit string Required

The symbol, e.g BTC, TRX, BNB, ETH.

ETH
isVaultAddress string Required

If this address belongs to this Vault.

true
label string Optional

The address label.

Address name
status string Required

The status of the transaction.

completed
transactionFee object Required

The transaction fee details.

amount string Required

The transaction fee amount.

0.0024
amountUnit string Required

The transaction fee symbol.

ETH
transactionId string Required

The blockchain transaction ID.

281a63d28ddf6d0d5d78090b7cdf3a8c0be95bbb296544943ef45d9dec44405d
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2025-09-23",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "items": [
            {
                "blockchain": "ethereum",
                "createdTimestamp": 1705399159,
                "direction": "incoming",
                "hasTokenTransfer": "false",
                "id": "654ba3af9e8dd80901f17347",
                "isInternal": "false",
                "minedInBlockHeight": "1234324",
                "network": "mainnet",
                "recipients": [
                    {
                        "address": "0xd2070342a1a5ce24930ec6582b3db846458525a0",
                        "addressType": "deposit",
                        "amount": "0.0003",
                        "amountUnit": "ETH",
                        "isVaultAddress": "true",
                        "label": "Address name"
                    }
                ],
                "senders": [
                    {
                        "address": "0xa94b8eca8703ad2804cb204976ac023b612c407e",
                        "addressType": "deposit",
                        "amount": "0.0003",
                        "amountUnit": "ETH",
                        "isVaultAddress": "true",
                        "label": "Address name"
                    }
                ],
                "status": "completed",
                "transactionFee": {
                    "amount": "0.0024",
                    "amountUnit": "ETH"
                },
                "transactionId": "281a63d28ddf6d0d5d78090b7cdf3a8c0be95bbb296544943ef45d9dec44405d"
            }
        ]
    }
}