Skip to main content
GET
/
tokenization
/
tokens
/
{id}
/
balances
/
{accountAddress}
TypeScript
const response: Promise<FireblocksResponse<AddressBalanceItemDto>> = fireblocks.tokenization.getTokenBalanceForAccount(tokenizationApiGetTokenBalanceForAccountRequest);
{
  "accountAddress": "0x1234567890123456789012345678901234567890",
  "balance": "1000000000000000000",
  "lastUpdated": "2023-12-01T12:00:00.000Z"
}

Path Parameters

id
string
required

The token link id

accountAddress
string
required

The account address to get balance history for

Example:

"0x1234567890abcdef1234567890abcdef12345678"

Response

Successfully retrieved the balance for the account

accountAddress
string
required

The account address

Example:

"0x1234567890123456789012345678901234567890"

balance
string
required

The current balance of the account

Example:

"1000000000000000000"

lastUpdated
string<date-time>
required

The timestamp when this balance was last updated

Example:

"2023-12-01T12:00:00.000Z"