Skip to main content
GET
/
token
/
{network}
/
{address}
/
top-holders
Get paginated top holders for a given token.
curl --request GET \
  --url https://solana-gateway.moralis.io/token/{network}/{address}/top-holders \
  --header 'X-Api-Key: <api-key>'
{
  "result": [],
  "page": 123,
  "pageSize": 123,
  "totalSupply": "<string>",
  "cursor": "<string>"
}
Endpoint cost: CUs. Learn more about compute units.

Authorizations

X-Api-Key
string
header
required

Path Parameters

network
enum<string>
required

The network to query

Available options:
mainnet,
devnet
address
string
required

The address to query

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

Query Parameters

cursor
string

The cursor to the next page

limit
number
default:100

The limit per page

Required range: 1 <= x <= 100

Response

200 - application/json
result
object[]
required

The list of top holders

page
number
required

The page number

pageSize
number
required

The page size

totalSupply
string
required

The total supply of the token

cursor
string

The cursor to fetch the next page