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

The address for which all assets will be listed.

blockchain string Required

Represents the specific blockchain protocol name, e.g. Bitcoin, Tron, Ethereum , Binance Smart Chain 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.

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
item object Required
assets array Items (object) Required

Information about each asset associated with the address.

assetData object Required

Contains data about the asset.

allocatedAmount string Required

The allocated amount of the asset associated with the address.

0
availableAmount string Required

The available amount of the asset associated with the address.

49990
blockedAmount string Required

The blocked amount of the asset associated with the address.

0
contract string Required

The contract address of the asset.

TXLAQ63Xg1NAzckPwKHvzw7CSEmLMEqcdj
standard string Required

The standard of the asset e.g. TRC-20, BEP-20, ERC-20 .

TRC-20
totalAmount string Required

The total amount of the asset associated with the address.

49990
exchangeRate string Required

The current exchange rate.

0.9994230956541328
symbol string Required

The symbol of the asset, e.g. BTC, BNB, USDT, ETH, JST, USDC.

BTC
type string Required

The type of the asset - COIN/TOKEN

TOKEN
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-05-09",
    "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": "BTC",
                    "type": "TOKEN"
                }
            ]
        }
    }
}