v1

latestOpenAPI 3.1.02026-07-12185391.3 KB
Looking 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

nextPageTokenstring

A token, which can be sent as pageToken to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.

nftCollectionNamestring[]

NFT project name.

nftSymbolstring[]

NFT symbol.

totalHoldersnumber required

Total number of holders of a given NFT project.

totalTokensnumber required

Total number of tokens of a given NFT project.

Example response

{
  "addresses": [
    {
      "address": "0x1234567890abcdef1234567890abcdef123456789"
    }
  ],
  "totalHolders": 10,
  "totalTokens": 10
}