getTokenLargestAccounts
Returns the 20 largest accounts of a particular SPL Token type.
POST Category: token
Example Request
curl "https://eu.fluxrpc.com?key=<your-API-key>" -s -X POST -H "Content-Type: application/json" -d '
{
"jsonrpc": "2.0",
"id": 1,
"method": "getTokenLargestAccounts",
"params": ["3wyAj7Rt1TWVPZVteFCPi2bMFn8recJ9eNhWZaBsKFYR", { "commitment": "finalized" }]
}'
Example Response
{
"jsonrpc": "2.0",
"result": {
"context": { "slot": 1114 },
"value": [
{ "address": "FYjHNoFtSQ5uijKrZFyYAxvEkiiCGDzfcgG6BoEFAbJL", "amount": "771090", "decimals": 2, "uiAmountString": "7710.90" }
]
},
"id": 1
}
Developer Guide
Solana getTokenLargestAccounts & RugCheck getTokenReport Developer Guide — Learn how to fetch the 20 largest holders of a Solana token with a getTokenLargestAccounts RPC call. Then get the same list — owning wallets included — from a full RugCheck token report, and decide which method fits your application best.