List asset wallets (Paginated)
GET {{baseUrl}}/vault/asset_wallets
Gets all asset wallets at all of the vault accounts in your workspace. An asset wallet is an asset at a vault account. This method allows fast traversal of all account balances.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
totalAmountLargerThan | string | When specified, only asset wallets with total balance larger than this amount are returned. | |
assetId | string | When specified, only asset wallets cross vault accounts that have this asset ID are returned. | |
orderBy | string | ||
before | string | Fetches the next paginated response before this element. This element is a cursor and is returned at the response of the previous page. | |
after | string | Fetches the next paginated response after this element. This element is a cursor and is returned at the response of the previous page. | |
limit | number | The maximum number of asset wallets in a single response. The default is 200 and the maximum is 1000. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"assetWallets":[{"vaultId":"\u003cstring\u003e","assetId":"\u003cstring\u003e","available":"\u003cstring\u003e","total":"\u003cstring\u003e","pending":"\u003cstring\u003e","staked":"\u003cstring\u003e","frozen":"\u003cstring\u003e","lockedAmount":"\u003cstring\u003e","blockHeight":"\u003cstring\u003e","blockHash":"\u003cstring\u003e","creationTimestamp":"\u003cstring\u003e"},{"vaultId":"\u003cstring\u003e","assetId":"\u003cstring\u003e","available":"\u003cstring\u003e","total":"\u003cstring\u003e","pending":"\u003cstring\u003e","staked":"\u003cstring\u003e","frozen":"\u003cstring\u003e","lockedAmount":"\u003cstring\u003e","blockHeight":"\u003cstring\u003e","blockHash":"\u003cstring\u003e","creationTimestamp":"\u003cstring\u003e"}],"paging":{"before":"\u003cstring\u003e","after":"\u003cstring\u003e"}}