API ReferenceToken APIGet Token HoldersGet Token Holder StatsVersion: 2.2Get Token Holder StatsLooking for token holder stats on EVM?Access token holder statistics on EVM using our API.Explore EVM APIGEThttps://solana-gateway.moralis.io/token/mainnet/holders/:addressGet Solana token holder summaryPATH PARAMSnetworkstringrequiredThe network to querymainnetdevnetaddressstringrequiredThe token mint addressResponses200 Returns token holder summaryobjectAPI KEYTest Live APINode.jsPythoncURLGoPHP// Dependencies to install:// $ npm install node-fetch --save// add "type": "module" to package.jsonimport fetch from 'node-fetch';const options = { method: 'GET', headers: { accept: 'application/json', 'X-API-Key': 'YOUR_API_KEY' },};fetch('https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));# Dependencies to install:# $ python -m pip install requestsimport requestsurl = "https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"headers = { "Accept": "application/json", "X-API-Key": "YOUR_API_KEY"}response = requests.request("GET", url, headers=headers)print(response.text)curl --request GET \ --url 'https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' package mainimport ( "fmt" "net/http" "io/ioutil")func main() { url := "https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN" req, _ := http.NewRequest("GET", url, payload) req.Header.Add("Accept", "application/json") req.Header.Add("X-API-Key", "YOUR_API_KEY") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('GET', 'https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Returns token holder summary{ "totalHolders": 647639, "holdersByAcquisition": { "swap": 475836, "transfer": 156565, "airdrop": 15238 }, "holderChange": { "5min": { "change": 1, "changePercent": 0.00015 }, "1h": { "change": -4, "changePercent": -0.00062 }, "6h": { "change": -68, "changePercent": -0.01 }, "24h": { "change": -294, "changePercent": -0.045 }, "3d": { "change": 2961, "changePercent": 0.46 }, "7d": { "change": 6624, "changePercent": 1 }, "30d": { "change": -69531, "changePercent": -11 } }, "holderDistribution": { "whales": 2, "sharks": 2, "dolphins": 4, "fish": 5, "octopus": 16, "crabs": 54, "shrimps": 647558 }}