getCompressedMintTokenHolders

Returns the owner balances for a given mint in descending order. This is a paginated endpoint

post
Body
idstring · enumRequired

An ID to identify the request.

Possible values:
jsonrpcstring · enumRequired

The version of the JSON-RPC protocol.

Possible values:
methodstring · enumRequired

The name of the method to invoke.

Possible values:
Responses
200Success
application/json
post
POST / HTTP/1.1
Host: mainnet.helius-rpc.com
Content-Type: application/json
Accept: */*
Content-Length: 177

{
  "id": "test-account",
  "jsonrpc": "2.0",
  "method": "getCompressedMintTokenHolders",
  "params": {
    "cursor": "3J98t1WpEZ73CNm",
    "limit": 1,
    "mint": "111111152P2r5yt6odmBLPsFCLBrFisJ3aS7LqLAT"
  }
}
{
  "context": {
    "slot": 100
  },
  "value": {
    "cursor": "3J98t1WpEZ73CNm",
    "items": [
      {
        "balance": 100,
        "owner": "111111152P2r5yt6odmBLPsFCLBrFisJ3aS7LqLAT"
      }
    ]
  }
}

Last updated