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.

2024-05-09
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, Tron.

bitcoin
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.

TKGMSZh4Wf3pVB2gWkUqzU7vwGhRy4H245
addressType string Optional

The address type, e.g deposit, smart.

deposit
amount string Required

The amount received.

5.96124
isVaultAddress string Required

If this address belongs to this Vault or not.

true
label string Optional

The label of the address.

Tron address
unitSymbol string Required

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

USDT
senders array Items (object) Required

Senders are all addresses send assets in this transaction.

address string Required

The public sender's address.

TF5mtoWoahGhJiPU4BXXANPvL1kuRwrBoM
addressType string Optional

The address type , e.g. Deposit, Smart.

amount string Required

The amount sent.

0.000001
isVaultAddress string Required

If this address belongs to this Vault.

true
label string Optional

The address label.

unitSymbol string Required

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

BTC
status string Required

The status of the transaction.

completed
transactionFee object Required

The transaction fee details.

amount string Required

The transaction fee amount

5.96124
unitSymbol string Required

The transaction fee symbol.

TRX
transactionId string Required

The blockchain transaction ID.

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

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "limit": 50,
        "startingAfter": "5ca21f92cf5431000105d1a7",
        "hasMore": true,
        "items": [
            {
                "blockchain": "bitcoin",
                "createdTimestamp": 1705399159,
                "direction": "incoming",
                "hasTokenTransfer": "false",
                "id": "654ba3af9e8dd80901f17347",
                "isInternal": "false",
                "minedInBlockHeight": "1234324",
                "network": "mainnet",
                "recipients": [
                    {
                        "address": "TKGMSZh4Wf3pVB2gWkUqzU7vwGhRy4H245",
                        "addressType": "deposit",
                        "amount": "5.96124",
                        "isVaultAddress": "true",
                        "label": "Tron address",
                        "unitSymbol": "USDT"
                    }
                ],
                "senders": [
                    {
                        "address": "TF5mtoWoahGhJiPU4BXXANPvL1kuRwrBoM",
                        "addressType": "",
                        "amount": "0.000001",
                        "isVaultAddress": "true",
                        "label": "",
                        "unitSymbol": "BTC"
                    }
                ],
                "status": "completed",
                "transactionFee": {
                    "amount": "5.96124",
                    "unitSymbol": "TRX"
                },
                "transactionId": "281a63d28ddf6d0d5d78090b7cdf3a8c0be95bbb296544943ef45d9dec44405d"
            }
        ]
    }
}