Logo
Fireblocks API Documentation

Get asset addresses

GET {{baseUrl}}/vault/accounts/:vaultAccountId/:assetId/addresses

Lists all addresses for specific asset of vault account. - This endpoint will be deprecated on Mar 31,2024. - If your application logic or scripts rely on the deprecated endpoint, you should update to account for GET/V1/vault/accounts/{vaultAccountId}/{assetId}/addressespaginated before Mar 31,2024. - All workspaces created after Mar 31,2024. will have it disabled. If it is disabled for your workspace and you attempt to use it, you will receive the following error message: "This endpoint is unavailable. - Please use the GET/V1/vault/accounts/{vaultAccountId}/{assetId}/addressespaginated endpoint to return all the wallet addresses associated with the specified vault account and asset in a paginated list. - This API call is subject to rate limits.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

[ { "assetId": "<string>", "address": "<string>", "description": "<string>", "tag": "<string>", "type": "<string>", "customerRefId": "<string>", "addressFormat": "SEGWIT", "legacyAddress": "<string>", "enterpriseAddress": "<string>", "bip44AddressIndex": "<integer>", "userDefined": "<boolean>" }, { "assetId": "<string>", "address": "<string>", "description": "<string>", "tag": "<string>", "type": "<string>", "customerRefId": "<string>", "addressFormat": "SEGWIT", "legacyAddress": "<string>", "enterpriseAddress": "<string>", "bip44AddressIndex": "<integer>", "userDefined": "<boolean>" } ]



Curl
curl -X GET 'https://api.fireblocks.io/v1/vault/accounts/:vaultAccountId/:assetId/addresses' -H 'Accept: application/json'

ENDPOINTS