Jump to
Ctrl
+
/

List Addresses by Asset ID and Vault ID

GET
/assets/{assetId}/vaults/{vaultId}/{blockchain}/{network}/addresses

This endpoint allows users to retrieve information about their specific asset in a vault.

Path Parameters

assetId string Required

The specific asset ID.

blockchain string Required

The specific blockchain - e.g. Bitcoin, Ethereum,Binance Smart Chain, Tron.

network string Required

The specific network - mainnet, testnet, sepolia, nile..

vaultId string Required

The specific 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.

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
addresses array Items (object) Required
address string Required

Represents the address associated with the assets.

tb1qpv55wm7g3cuwyhky0jy82dru4c69p0uuwrnq0w
addressType string Required

The type of the address e.g. smart, deposit, change.

deposit
allocatedAmount string Required

Allocated amount of the specific asset in the address.

0
availableAmount string Required

Available amount of the specific asset in the address.

0
blockedAmount string Required

Blocked amount of the specific asset in the address.

0
label string Required

Represents the name of the address.

yourAddressLabelHere
totalAmount string Required

Total amount of the specific asset in the address.

0.00006739
exchangeRate string Required

The current exchange rate.

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

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "addresses": [
                {
                    "address": "tb1qpv55wm7g3cuwyhky0jy82dru4c69p0uuwrnq0w",
                    "addressType": "deposit",
                    "allocatedAmount": "0",
                    "availableAmount": "0",
                    "blockedAmount": "0",
                    "label": "yourAddressLabelHere",
                    "totalAmount": "0.00006739"
                }
            ],
            "exchangeRate": "40022.59732885433"
        }
    }
}