v1
latestOpenAPI 3.0.32026-07-173986194.3 KBReturns the list of holders of an EVM (ERC-20, ...) token. This endpoint does not verify that `address` is actually an EVM token; if it is not, it will simply return an empty list.
get/{runtime}/evm_tokens/{address}/holders
Path parameters
runtime'emerald' | 'sapphire' | 'pontusxtest' | 'pontusxdev' | 'cipher' required
The runtime which to query.
addressstring required
The staking address of the token contract for which to return the holders.
Query parameters
limitinteger
The maximum numbers of items to return.
offsetinteger
The number of items to skip before starting to collect the result set.
Response
The requested holders.
Example response
{
"total_count": 412,
"is_total_count_clipped": true,
"holders": [
{
"holder_address": "oasis1qpg2xuz46g53737343r20yxeddhlvc2ldqsjh70p",
"balance": "1234567890123456789012"
}
]
}