Logo
Fireblocks API Documentation

List addresses (Paginated)

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

Returns a paginated response of the addresses for a given vault account and asset.

 

Body PARAM

Key Datatype Required Description 
limit
string
before
string
after
string



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "addresses": [ { "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": "LEGACY", "legacyAddress": "<string>", "enterpriseAddress": "<string>", "bip44AddressIndex": "<integer>", "userDefined": "<boolean>" } ], "paging": { "before": "<string>", "after": "<string>" } }

Curl
curl -X GET 'https://api.fireblocks.io/v1/vault/accounts/:vaultAccountId/:assetId/addresses_paginated?limit=<number>&before=<string>&after=<string>' -H 'Accept: application/json'

ENDPOINTS