Token Holders
Returns the token holders wallets and token info ERC20, ERC721 and ERC1155 tokens.
GraphQL Query
query contractWallets($contractAddress: String!, $page: Int!, $pageSize: Int!) {
contractWallets(contractAddress: $contractAddress, page: $page, pageSize: $pageSize) {
walletAddresses {
address
amount
tokenId
}
contractAddress
name
symbol
latestPrice
netBalance
decimal
chain
tokenId
tokenType
}
}
Variables
{
"contractAddress": String, // Token Address
"page": Int, // Page Number
"pageSize": Int // Page Size
}
Response
{
"data": {
"contractWallets": {
"walletAddresses": Array<{
"address": String, // Token holders' wallet address
"amount": Float | null, // Token Balance in USD. Value null for ERC721 and ERC1155
"tokenId": String | null // Token Id. Value null for ERC20
}>,
"contractAddress": String, // Contract address of the token
"name": String, // Name of the token
"symbol": String, // Symbol of the token
"chain": String, // Blockchain network of the token
"tokenType": String // Token type
}
}
}
Example
ERC 1155
ERC 721
ERC 20
Last updated
Was this helpful?