Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get ERC20 Token Holders

Solana Logo

Looking for token holders on Solana?

Access token holders on Solana using our API.

Explore Solana API
GEThttps://deep-index.moralis.io/api/v2.2/erc20/:token_address/owners

Identify the major holders of an ERC20 token and understand their ownership percentages

PATH PARAMS
token_addressstringrequired
The address of the token contract
QUERY PARAMS
chainstring
The chain to query
limitnumber
The desired page size of the result.
cursorstring
The cursor returned in the previous response (used for getting the next page).
orderstring
The order of the result, in ascending (ASC) or descending (DESC)
Responses
200Returns a collection of owners of an ERC20 token
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://deep-index.moralis.io/api/v2.2/erc20/0x6982508145454ce325ddbe47a25d4ec3d2311933/owners?chain=eth&limit=25&order=DESC' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"page": "2",
"page_size": "100",
"cursor": "",
"result": {
"owner_address": "0x244...",
"owner_address_label": "Coinbase 1",
"balance": "57888888888888888888880",
"balance_formatted": "5.78",
"usd_value": "57888888888888888888880",
"is_contract": "",
"percentage_relative_to_total_supply": ""
}
}