Skip to main content
GET
/
ncw
/
wallets
/
{walletId}
/
accounts
/
{accountId}
/
assets
/
{assetId}
/
addresses
TypeScript
const response: Promise<FireblocksResponse<EmbeddedWalletPaginatedAddressesResponse>> = fireblocks.embeddedWallets.getEmbeddedWalletAddresses(embeddedWalletsApiGetEmbeddedWalletAddressesRequest);
{
  "data": [
    {
      "accountName": "accountName",
      "accountId": "accountIdName",
      "asset": "assetName",
      "address": "addressName",
      "addressType": "addressType",
      "addressDescription": "addressDescriptionName",
      "tag": "tagName",
      "addressIndex": "addressIndexName",
      "change": "changeName",
      "coinType": "BTC",
      "customerRefId": "customerRefIdName",
      "addressFormat": "addressFormatName",
      "legacyAddress": "legacyAddressName",
      "paymentAddress": "paymentAddressName",
      "userDefined": true,
      "state": "stateName"
    }
  ],
  "next": "eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

walletId
string
required

Wallet Id

accountId
string
required

The ID of the account

assetId
string
required

The ID of the asset

Query Parameters

pageCursor
string

Cursor to the next page

pageSize
number

Items per page

Required range: 1 <= x <= 100
sort
enum<string>
default:createdAt

Sort by address

Available options:
address,
createdAt
order
enum<string>
default:ASC

Is the order ascending or descending

Available options:
DESC,
ASC
enabled
boolean

Enabled

Response

Successful response

data
object[]
required

The data of the current page

next
string | null

The ID of the next page

Example:

"eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"