Skip to main content
POST
/
api
/
solscan
/
tokens
/
holders
/solscan/tokens/holders
curl --request POST \
  --url https://api.anysite.io/api/solscan/tokens/holders \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "address": "<string>",
    "@type": "SolscanTokenHolder",
    "owner": "<string>",
    "amount": 123,
    "amount_raw": "<string>",
    "decimals": 123,
    "rank": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Token mint address (base58)

Example:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

count
integer
required

Max number of holders to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

address
string
required
@type
string
default:SolscanTokenHolder
owner
string | null
amount
number | null
amount_raw
string | null
decimals
integer | null
rank
integer | null