getLargestAccounts

Returns the 20 largest accounts, by lamport balance.

POST Category: account

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": "getLargestAccounts"
}'

Example Response

{
  "jsonrpc": "2.0",
  "result": {
    "context": { "slot": 54 },
    "value": [
      { "lamports": 999974, "address": "99P8ZgtJYe1buSK8JXkvpLh8xPsCFuLYhz9hQFNw93WJ" }
    ]
  },
  "id": 1
}

← Back to all methods