Jump to
Ctrl
+
/

List All Assets by Address

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

This endpoint retrieves a list of all assets associated with a specific address. It supports an optional query parameter blockchain to filter the assets by the blockchain on which they are located.

Path Parameters

address string Required

The address for which all assets will be listed.

Default : 0xb5e561691fe71d5d938a50841a5a09c10359fce6
vaultId string Required

The unique vault ID used for the search.

Default : 66d70e6552fa9a0007ed0963

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.

blockchain string Optional

Filter the results by a specific blockchain. If not provided, assets across all supported blockchains will be returned.

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.

0x1c7d4b196cb0c7b01d743fbc6116a902379c7238
standard string Required

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

ERC-20
totalAmount string Required

The total amount of the asset associated with the address.

49990
assetId string Required

Represents the specific asset ID.

6523e058a06ebf1322d7dd6e
blockchain string Required

Represents the blockchain of the asset in the particular vault, e.g. ethereum, bitcoin, binance-smart-chain, tron, polygon, base.

ethereum
exchange_rate string Required

The current exchange rate.

2363.995645367618
network string Required

Represents the network of the asset in the particular vault, e.g. mainnet, testnet, sepolia, nile.

mainnet
symbol string Required

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

ETH
type string Required

Defines the specific token type or native coin

COIN
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": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
                        "standard": "ERC-20",
                        "totalAmount": "49990"
                    },
                    "assetId": "6523e058a06ebf1322d7dd6e",
                    "blockchain": "ethereum",
                    "exchange_rate": "2363.995645367618",
                    "network": "mainnet",
                    "symbol": "ETH",
                    "type": "COIN"
                }
            ]
        }
    }
}