Get the summary of holders for a given token token.
curl --request GET \
--url https://solana-gateway.moralis.io/token/{network}/holders/{address} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://solana-gateway.moralis.io/token/{network}/holders/{address}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://solana-gateway.moralis.io/token/{network}/holders/{address}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://solana-gateway.moralis.io/token/{network}/holders/{address}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://solana-gateway.moralis.io/token/{network}/holders/{address}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://solana-gateway.moralis.io/token/{network}/holders/{address}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://solana-gateway.moralis.io/token/{network}/holders/{address}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalHolders": 5000,
"holdersByAcquisition": {
"swap": 150,
"transfer": 50,
"airdrop": 20
},
"holderChange": {
"5min": {
"change": 50,
"changePercent": 2.5
},
"1h": {
"change": 50,
"changePercent": 2.5
},
"6h": {
"change": 50,
"changePercent": 2.5
},
"24h": {
"change": 50,
"changePercent": 2.5
},
"3d": {
"change": 50,
"changePercent": 2.5
},
"7d": {
"change": 50,
"changePercent": 2.5
},
"30d": {
"change": 50,
"changePercent": 2.5
}
},
"holderDistribution": {
"whales": 150,
"sharks": 150,
"dolphins": 150,
"fish": 150,
"octopus": 150,
"crabs": 150,
"shrimps": 150
},
"holderSupply": {
"top10": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top25": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top50": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top100": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top250": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top500": {
"supply": "1000000.123456",
"supplyPercent": 12.5
}
}
}Holders
Token Holder Metrics
deprecated
GET
/
token
/
{network}
/
holders
/
{address}
Get the summary of holders for a given token token.
curl --request GET \
--url https://solana-gateway.moralis.io/token/{network}/holders/{address} \
--header 'X-Api-Key: <api-key>'import requests
url = "https://solana-gateway.moralis.io/token/{network}/holders/{address}"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://solana-gateway.moralis.io/token/{network}/holders/{address}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://solana-gateway.moralis.io/token/{network}/holders/{address}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://solana-gateway.moralis.io/token/{network}/holders/{address}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://solana-gateway.moralis.io/token/{network}/holders/{address}")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://solana-gateway.moralis.io/token/{network}/holders/{address}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalHolders": 5000,
"holdersByAcquisition": {
"swap": 150,
"transfer": 50,
"airdrop": 20
},
"holderChange": {
"5min": {
"change": 50,
"changePercent": 2.5
},
"1h": {
"change": 50,
"changePercent": 2.5
},
"6h": {
"change": 50,
"changePercent": 2.5
},
"24h": {
"change": 50,
"changePercent": 2.5
},
"3d": {
"change": 50,
"changePercent": 2.5
},
"7d": {
"change": 50,
"changePercent": 2.5
},
"30d": {
"change": 50,
"changePercent": 2.5
}
},
"holderDistribution": {
"whales": 150,
"sharks": 150,
"dolphins": 150,
"fish": 150,
"octopus": 150,
"crabs": 150,
"shrimps": 150
},
"holderSupply": {
"top10": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top25": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top50": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top100": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top250": {
"supply": "1000000.123456",
"supplyPercent": 12.5
},
"top500": {
"supply": "1000000.123456",
"supplyPercent": 12.5
}
}
}Deprecated — scheduled for removal on July 31, 2026. See the changelog for details and migration guidance.
Authorizations
Path Parameters
The network to query
Available options:
mainnet, devnet The address to query
Example:
"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"
⌘I

