Get latest balances for all holders of a token
Returns the latest balance for each unique address holding this token.
GET
TypeScript
Path Parameters
The token link id
Query Parameters
Page cursor to get the next page
Number of items per page (max 100), requesting more than 100 will return 100 items
Required range:
1 <= x <= 100Sorting field for balances
Available options:
accountAddress, blockTimestamp ASC / DESC ordering (default DESC)
Available options:
ASC, DESC Response
Successfully retrieved the latest balances for the token
Array of address balance data
Example:
[
{
"accountAddress": "0x1234567890123456789012345678901234567890",
"balance": "1000000000000000000",
"lastUpdated": "2023-12-01T12:00:00.000Z"
}
]Cursor for next page
Example:
"MjAyMy0xMi0xMyAyMDozNjowOC4zMDI=:MTEwMA=="
Cursor for previous page (reserved for future support)
Example:
"dGhpcyBpcyBhIHByZXZpb3VzIGN1cnNvcg=="
Total count of items
Example:
150
Previous
Get the latest balance for a specific accountReturns the latest token balance for the specified account address.
Next
TypeScript