v1

latestOpenAPI 3.1.02026-07-26360335.7 KB

Retrieve Coin Holders

Returns holders of a coin by a given object type.

get/sui/coin/holders

Query parameters

coinTypestring required

string - the coin type for the coin to get the holders.

cursorstring

next page cursor.

limitinteger

the maximum number of results to return per page. Defaults to 20, maximum is 50.

Response

200

codeinteger
messagestring

Example response

{
  "code": 200,
  "message": "Success",
  "result": {
    "data": [
      {
        "address": "0x341fa71e4e58d63668034125c3152f935b00b0bb5c68069045d8c646d017fae1",
        "quantity": "301670457.728642",
        "percentage": "0.0302"
      }
    ],
    "nextPageIndex": 2,
    "total": 623379
  }
}