v1
latestOpenAPI 3.1.02026-07-12185391.3 KBLooking Glass
Get list of NFT holders and number of NFTs held by contract address on Avalanche C-Chain (mainnet, chainId 43114).
get/v2/chains/{chainId}/contracts/{address}/nfts:listHolders
Path parameters
chainIdstring required
Must be 43114 for Avalanche C-Chain. Other chain IDs are no longer supported.
addressstring required
Contract address on the relevant chain.
Query parameters
pageTokenstring
A page token, received from a previous list call. Provide this to retrieve the subsequent page.
pageSizeinteger
The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 5000.
Response
Successful response
Example response
{
"addresses": [
{
"address": "0x1234567890abcdef1234567890abcdef123456789"
}
],
"totalHolders": 10,
"totalTokens": 10
}