cURL
curl --request POST \ --url https://devnet.helius-rpc.com/getCompressedMintTokenHolders \ --header 'Content-Type: application/json' \ --data ' { "id": "test-account", "jsonrpc": "2.0", "method": "getCompressedMintTokenHolders", "params": { "mint": "111111131h1vYVSYuKP6AhS86fbRdMw9XHiZAvAaj", "cursor": "3J98t1WpEZ73CNm", "limit": 1 } } '
{ "id": "test-account", "jsonrpc": "2.0", "error": { "code": 123, "message": "<string>" }, "result": { "context": { "slot": 100 }, "value": { "items": [ { "balance": 100, "owner": "111111131h1vYVSYuKP6AhS86fbRdMw9XHiZAvAaj" } ], "cursor": "3J98t1WpEZ73CNm" } } }
Retrieve owner balances for a given mint in descending order. Overview with RPC method guide.
An ID to identify the request.
test-account
The version of the JSON-RPC protocol.
2.0
The name of the method to invoke.
getCompressedMintTokenHolders
Show child attributes
A Solana public key represented as a base58 string.
"111111131h1vYVSYuKP6AhS86fbRdMw9XHiZAvAaj"
A base 58 encoded string.
"3J98t1WpEZ73CNm"
x >= 0
An ID to identify the response.
100
Was this page helpful?