API reference
Vaultody
GET
/vaults/{vaultId}/vault-accounts/{vaultAccountId}/list-addresses
List Addresses by Vault Account ID
Retrieves a list of all addresses associated with a specific vault account within a vault, along with their current balances.
Path parameters
vaultAccountId
string
required
Unique identifier of the vault account.
vaultId
string
required
Unique identifier of the vault.
Query parameters
context
string
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.
assetId
string
Unique identifier of the asset.
blockchain
string
Filters addresses by blockchain, e.g bitcoin, tron, litecoin, solana, binance-smart-chain.
limit
integer
Defines how many items should be returned in the response per page basis.
startingAfter
string
Defines the id of the previous listed record id from which the current list should start from.
Response
Returns 200 the request has been successful.
apiVersion
string
required
Specifies the version of the API that incorporates this endpoint.
requestId
string
required
Defines the ID of the request. The `requestId` is generated by Vaultody and it's unique for every request.
context
string
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.
data
object
required
limit
integer
required
Defines how many items should be returned in the response per page basis.
startingAfter
string
Defines the id of the previous listed record id from which the current list should start from.
hasMore
boolean
required
Defines whether or not there are more elements available after this set.
items
object[]
required
address
string
required
Blockchain address.
addressId
string
required
Unique identifier of the address (address ID to start after).
addressIndex
string
required
Derivation index of the address within the vault account.
balances
object[]
required
amount
string
required
Balance amount for the asset on this address.
assetId
string
required
Unique identifier of the asset.
assetUnit
string
required
Asset symbol (e.g., BTC, ETH, USDT, TRX).
blockchain
string
required
Blockchain for the address (e.g., bitcoin, ethereum, tron).
createdTimestamp
integer
required
Unix timestamp (seconds) indicating when the address was created.
label
string
required
Human-readable label assigned to the address.