Jump to
Ctrl
+
/

List Assets By Vault

GET
/vaults/{vaultId}/assets

Through this endpoint customers can obtain information about available assets in one of their vaults, regardless of the blockchain protocol or network, by providing vaultId.

Path Parameters

vaultId string Required

Defines the unique ID of the Vault.

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.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2023-04-20
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
item object Required
assets array Items (object) Required
assetData object Required
allocatedAmount string Required
0
availableAmount string Required
986.1
blockedAmount string Required
0
contract string Required
TF17BgPaZYbz8oxbjhriubPDsA7ArKoLX3
standard string Required
TRC-20
totalAmount string Required
986.100000
blockchain string Required
tron
exchangeRate string Required
9997317682497079
network string Required
nile
symbol string Required
USDT
type string Required
TOKEN

Credits Cost : 500 Credits for 1 Results

Was this page helpful?
Yes
No
Powered by
URL

{
    "apiVersion": "2023-04-20",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "assets": [
                {
                    "assetData": {
                        "allocatedAmount": "0",
                        "availableAmount": "986.1",
                        "blockedAmount": "0",
                        "contract": "TF17BgPaZYbz8oxbjhriubPDsA7ArKoLX3",
                        "standard": "TRC-20",
                        "totalAmount": "986.100000"
                    },
                    "blockchain": "tron",
                    "exchangeRate": "9997317682497079",
                    "network": "nile",
                    "symbol": "USDT",
                    "type": "TOKEN"
                }
            ]
        }
    }
}