Jump to
Ctrl
+
/

List Assets by Address

GET
/vaults/{vaultId}/{blockchain}/addresses/{address}/assets

This endpoint will list all assets for this address on this Blockchain, the network is based on the Vault.

Path Parameters

address string Required
blockchain string Required

Represents the specific blockchain protocol name, e.g. Tron, Ethereum, Bitcoin, etc.

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
49990
blockedAmount string Required
0
contract string Required
TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj
standard string Required
TRC-20
totalAmount string Required
49990
exchangeRate string Required
0.9994230956541328
symbol string Required
USDT
type string Required
TOKEN

Credits Cost : 100 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": "49990",
                        "blockedAmount": "0",
                        "contract": "TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj",
                        "standard": "TRC-20",
                        "totalAmount": "49990"
                    },
                    "exchangeRate": "0.9994230956541328",
                    "symbol": "USDT",
                    "type": "TOKEN"
                }
            ]
        }
    }
}