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.
Body
PARAM
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
|
< Curl curl -X GET 'https://api.fireblocks.io/v1/vault/asset_wallets?totalAmountLargerThan=<number>&assetId=<string>&orderBy=DESC&before=<string>&after=<string>&limit=200' -H 'Accept: application/json' ENDPOINTS |