Token Holders Summary
curl --request GET \
--url https://api.cryptorank.io/v3/currencies/{id}/holders/summary \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/currencies/{id}/holders/summary"
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://api.cryptorank.io/v3/currencies/{id}/holders/summary', 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://api.cryptorank.io/v3/currencies/{id}/holders/summary",
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://api.cryptorank.io/v3/currencies/{id}/holders/summary"
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://api.cryptorank.io/v3/currencies/{id}/holders/summary")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/currencies/{id}/holders/summary")
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{
"data": {
"blockchainId": 1,
"concentration": [
{
"amount": "12587457615.92",
"bucket": "top1_5",
"percentOfSupply": 17.08,
"value": "12591234567.12"
}
],
"contractsShare": 58.8,
"holdersCount": 4213567,
"snapshotDate": "2026-09-04T01:09:29.181Z",
"tierDistribution": [
{
"holdersCount": 1200,
"holdersPercent": 0.03,
"tier": "whale"
}
],
"top100Share": 63.41,
"totalSupply": "73692183812.24",
"walletsShare": 41.2
},
"status": {
"timestamp": 1780000000000,
"usedCredits": 1
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"status": 404
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}Currencies
Token Holders Summary
Ownership aggregates for a coin on a single network: total holders, top-100 share, wallet vs contract split, concentration by rank and holder tier distribution.
Available from: Advanced
Cost: 1 credit per request
GET
/
v3
/
currencies
/
{id}
/
holders
/
summary
Token Holders Summary
curl --request GET \
--url https://api.cryptorank.io/v3/currencies/{id}/holders/summary \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.cryptorank.io/v3/currencies/{id}/holders/summary"
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://api.cryptorank.io/v3/currencies/{id}/holders/summary', 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://api.cryptorank.io/v3/currencies/{id}/holders/summary",
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://api.cryptorank.io/v3/currencies/{id}/holders/summary"
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://api.cryptorank.io/v3/currencies/{id}/holders/summary")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.cryptorank.io/v3/currencies/{id}/holders/summary")
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{
"data": {
"blockchainId": 1,
"concentration": [
{
"amount": "12587457615.92",
"bucket": "top1_5",
"percentOfSupply": 17.08,
"value": "12591234567.12"
}
],
"contractsShare": 58.8,
"holdersCount": 4213567,
"snapshotDate": "2026-09-04T01:09:29.181Z",
"tierDistribution": [
{
"holdersCount": 1200,
"holdersPercent": 0.03,
"tier": "whale"
}
],
"top100Share": 63.41,
"totalSupply": "73692183812.24",
"walletsShare": 41.2
},
"status": {
"timestamp": 1780000000000,
"usedCredits": 1
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Validation failed",
"status": 400
}
}{
"error": {
"code": "API_KEY_MISSING",
"message": "API key is missing",
"status": 401
}
}{
"error": {
"code": "NO_ACTIVE_SUBSCRIPTION",
"message": "No active subscription found",
"status": 403
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"status": 404
}
}{
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Rate limit exceeded",
"status": 429
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "Internal server error",
"status": 500
}
}Coverage is limited to the top-1000 coins by market cap and EVM networks only. Coins outside coverage return null metrics, not an error.
All metrics are per-network and are never summed across networks. Data is a daily snapshot;
snapshotDate returns its collection time.For the holder rows behind these aggregates use /currencies//holders.
Authorizations
Path Parameters
Coin ID. See: GET /v3/currencies/map.
Example:
1
Query Parameters
Network to return aggregates for. Defaults to the coin's primary network — the one the website opens first. Unknown id → 400. See: GET /v3/blockchains/map.
Example:
1