Friday, August 1, 2025
No Result
View All Result
Crypeto News
Smarter_way_USA
  • Home
  • Bitcoin
  • Crypto Updates
    • General
    • Blockchain
    • Ethereum
    • Altcoin
    • Mining
    • Crypto Exchanges
  • NFT
  • DeFi
  • Web3
  • Metaverse
  • Analysis
  • Regulations
  • Scam Alert
  • Videos
CRYPTO MARKETCAP
  • Home
  • Bitcoin
  • Crypto Updates
    • General
    • Blockchain
    • Ethereum
    • Altcoin
    • Mining
    • Crypto Exchanges
  • NFT
  • DeFi
  • Web3
  • Metaverse
  • Analysis
  • Regulations
  • Scam Alert
  • Videos
CRYPTO MARKETCAP
Crypeto News
No Result
View All Result

How to Get Top Solana Token Holders

by crypetonews
May 14, 2025
in Web3
Reading Time: 11 mins read
0 0
A A
0
Home Web3
Share on FacebookShare on Twitter


Supercharge your crypto project with insightful token holder data using Moralis’ Solana Token Holders API. Instantly get top Solana token holders, track accumulation trends, and understand supply distribution – all with a single API call. It’s a great tool for boosting user value, increasing retention, and adding real-time data that keeps traders engaged! 

Short on time? Check out the sample script below, showing how easy it is to get top Solana token holders: 

import 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/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/top-holders’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

In return for running the script above, you get an array of top token holders, complete with balances, supply percentages, and much more. Here’s a sample response: 

{
//…
“totalSupply”: “9245329770.355232”,
“result”: [
{
“balance”: “891735383455576”,
“balanceFormatted”: “891735383.455576”,
“isContract”: false,
“ownerAddress”: “9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM”,
“usdValue”: “891826340.464688468752”,
“percentageRelativeToTotalSupply”: 9.65
},
/…
]
}

That’s it! With a single API call, you can get top Solana token holders without breaking a sweat!

To learn more about this, join us in today’s tutorial or check out the YouTube video right here: 

Also, if you immediately want to start using the Solana Token Holders API yourself, please sign up for a free Moralis account using the button below: 

Overview

Insight into top token holders can be pretty valuable to crypto traders and investors, as it enables them to track whale activity, replicate the strategies of other successful traders, identify potential centralization risks, and more. As such, adding data on token holders is a great way to boost the overall value of your platform, making it more attractive to users. 

But how do you get top Solana token holders? 

If you’re looking for the answer to the question above, you’re in the right place. In this article, we’ll show you the easiest way to get top Solana token holders so you can start building with confidence. Let’s dive in!

What are Solana Token Holders?

Token holders refer to the individuals, organizations, and smart contracts that own a particular crypto asset. There are many different types of holders, including retail traders, crypto whales, and large-scale institutional investors. The actions of these holders can significantly influence the price of a token, making it essential for traders and investors to closely monitor every aspect, from holder count to supply distribution. 

Here are a few key reasons why traders and investors want to track Solana token holders: 

Adoption & Growth: Real-time and historical insight into holder count can reveal short- and long-term trends. For example, a growing number is likely a positive signal indicating increasing adoption.  

Community Strength: Holder count and other insights can also help traders and investors determine the strength of a community. For instance, a steadily growing number of holders is a good indication of an active, strong community that supports the token.

Distribution & Risk: Understanding supply distribution is essential when trying to identify potential centralization risks. A token with only a few large holders is more susceptible to whale actions, which can lead to significant price fluctuations. 

In short, understanding Solana token holders enables traders to make more informed investment decisions!

Why Do You Need to Get Top Solana Token Holders?

There are numerous benefits to integrating Solana token holders into your platform. Here are three prominent reasons: 

Boost User Value: Integrating token holder insights will enhance your platform’s user value, making it more attractive to crypto traders and investors.

Drive Engagement: Real-time data and interactive features, such as charts, will keep users engaged on your website as they spend more time analyzing tokens. 

Improve Retention: Current and accurate insights will help build a loyal user base that returns to your platform for more. 

All in all, adding Solana token holders to your website is a great way to boost user value, drive engagement, and improve retention – all important aspects of running a successful crypto project!

Introducing Moralis for Devs – The Easiest Way to Get Top Solana Token Holders

Moralis for Developers is a top-tier crypto data provider that features world-class Web3 APIs and next-generation RPC nodes, designed to make your life as a developer a breeze. With only a single API call, you can get Solana token holders, a wallet’s fully decoded transaction history, OHLCV data, and much more. Supercharge your crypto project with powerful features to unlock higher engagement, greater user value, and stronger retention – all with minimal development effort!

How to Build NFT Apps on Solana

Here’s why developers choose Moralis as their crypto data provider:

More Data. Fewer Calls: All our APIs are outcome-oriented and designed to minimize the number of calls required to develop world-class features. Build insightful holder charts, comprehensive portfolio views, detailed transaction timelines, and much more with only a single request.

Cross-Chain Support: Moralis supports all the major blockchain networks, including Solana, Ethereum, Polygon, BNB Smart Chain (BSC), Optimism, and more. Utilize a single, unified toolset to build projects for the entire Web3 ecosystem. 

Enterprise-Grade Security: With a SOC 2 Type 2 certification, we ensure enterprise-grade security and reliability across all tools and features. 

With an overview of Moralis, we’ll now introduce the #1 Solana Token Holders API!

Exploring Moralis’ Solana Token Holders API

The Solana Token Holders API is the ultimate tool for anyone looking to fetch insights about Solana token holders. Get and integrate everything from top holders to supply distribution data with only a single API request!

Solana Token Holders API.

Here’s a quick summary of available endpoints: 

/token/:network/:address/top-holders: Fetch a list of top holders for any Solana token.

/token/mainnet/holders/:address: Get a token holder summary for any Solana token, including acquisition insights, short-term trends, supply distribution, and more.

/token/mainnet/holders/:address/historical: Query historical holder statistics for any Solana token. 

Let’s take a closer look at each endpoint in separate sections down below!

Get Top Solana Token Holders

With the /token/:network/:address/top-holders endpoint, you can easily fetch a list of top holders for any token on the Solana blockchain. To call it, just pass along a network and an address parameter. Here’s an example of what it can look like:

import 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/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/top-holders’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the endpoint above will return an array of the specified token’s top holders, complete with balances, USD values, supply percentages, and other key data. Here’s a sample response: 

{
//…
“totalSupply”: “9245329770.355232”,
“result”: [
{
“balance”: “891735383455576”,
“balanceFormatted”: “891735383.455576”,
“isContract”: false,
“ownerAddress”: “9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM”,
“usdValue”: “891826340.464688468752”,
“percentageRelativeToTotalSupply”: 9.65
},
/…
]
}

Fetch Solana Token Holder Stats

The /token/mainnet/holders/:address endpoint will give you a summary of holder stats for any Solana token. To call this endpoint, you only need to pass along a network and an address parameter. Here’s a sample script: 

import 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/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Running the above script will provide you with a wealth of valuable data, including the total holder count, acquisition insights, short-term trends, and information on supply distribution. Here’s an example of what it can look like:

{
totalHolders: 513238,
holdersByAcquisition: { swap: 161815, transfer: 137575, airdrop: 213848 },
holderChange: {
‘5min’: { change: -7, changePercent: -0.0014 },
‘1h’: { change: -45, changePercent: -0.0088 },
‘6h’: { change: -208, changePercent: -0.041 },
’24h’: { change: -494, changePercent: -0.096 },
‘3d’: { change: -1652, changePercent: -0.32 },
‘7d’: { change: -3002, changePercent: -0.58 },
’30d’: { change: 15457, changePercent: 3 }
},
holderDistribution: {
whales: 48,
sharks: 38,
dolphins: 672,
fish: 2575,
octopus: 3115,
crabs: 10879,
shrimps: 495911
},
holderSupply: {
top10: { supply: ‘46127367876201534’, supplyPercent: 51.89 },
top25: { supply: ‘54426340492558695’, supplyPercent: 61.23 },
top50: { supply: ‘58627892894350393’, supplyPercent: 65.96 },
top100: { supply: ‘61349275758201721’, supplyPercent: 69.02 },
top250: { supply: ‘64534047701161353’, supplyPercent: 72.6 },
top500: { supply: ‘66981557873551574’, supplyPercent: 75.35 }
}
}

Query Solana Token Holders Timeseries

With the /token/mainnet/holders/:address/historical endpoint, you can easily query an array of holder statistics for any Solana token over a specified time period. To call it, you need to pass a few parameters, including network, address, fromDate, toDate, and timeFrame. Here’s what it can look like: 

import 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/historical?fromDate=2025-01-01T10%3A00%3A00&toDate=2025-02-01T11%3A00%3A00&timeFrame=1d&limit=100’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the script above will return an array of timestamps, enriched with the total holder count, net change in the number of holders, acquisition data, and more. Here’s a sample response: 

{
“result”: [
{
“timestamp”: “2025-02-01T00:00:00.000Z”,
“totalHolders”: 669942,
“netHolderChange”: -9926,
“holderPercentChange”: -1.5,
“newHoldersByAcquisition”: {
“swap”: 6746,
“transfer”: 5696,
“airdrop”: 529
},
“holdersIn”: {
“whales”: 0,
“sharks”: 0,
“dolphins”: 0,
“fish”: 0,
“octopus”: 0,
“crabs”: 32,
“shrimps”: 12939
},
“holdersOut”: {
“whales”: 0,
“sharks”: 0,
“dolphins”: 0,
“fish”: 0,
“octopus”: 3,
“crabs”: 36,
“shrimps”: 22858
}
},
//…
],
}

If you’d like to learn more about these endpoints and try them out yourself, visit the token holders documentation page!

Use Cases for the Solana Token Holders API

You can use the Solana Token Holders API to build a bunch of valuable features for your crypto projects. In this section, we’ll take a look at three prominent use cases: 

Top Holders List: With just the /token/:network/:address/top-holders endpoint, you can effortlessly build a top holders list, showing each wallet’s address, total holdings, and percentage of the total supply. Give your users insight into a token’s top holders so they can monitor whales, copy the strategies of other successful traders, and much more. Here’s an example of what it can look like: 

Top List.

Supply Distribution, Short-Term Trends, & Acquisition Insights: Using just the /token/mainnet/holders/:address endpoint, you can effortlessly build everything from supply distribution tables to acquisition charts with only one API call. That way, you can provide your users with all the data they need to see how holders acquired their tokens, identify potential centralization risks, and analyze short-term trends. Here’s an example of features built with this endpoint: 

Holder Insights.

Holders Chart: With the /token/mainnet/holders/:address/historical endpoint, you can seamlessly build a holder chart, displaying a token’s holder count over various time periods. This will enable your users to analyze long- and short-term holder trends with ease. Here’s an example of what a holders chart can look like: 

Holders Chart.

The above use cases are only three prominent examples, and there are a lot of other powerful features you can build when working with Moralis!

Exploring Other Moralis Tools

The Solana Token Holders API is just one of many world-class Moralis tools. As such, let’s explore three other examples you’ll likely find helpful: 

Wallet API

Token API

NFT API

To explore all our premier development tools, please check out the Web3 API page!

Wallet API: Get a Wallet’s History & Token Balances

With the Wallet API, you can easily get any wallet’s decoded transaction history, token balances, NFT holdings, and more. As such, when using this premier interface, you can build everything from comprehensive portfolio views to in-depth transaction timelines without breaking a sweat. 

Wallet API.

Here are three key endpoints: 

/account/:network/:walletAddress/swaps: Get a wallet’s decoded history, complete with transaction types, category tags, prices, and much more. 

/account/:network/:address/portfolio: Fetch the portfolio of any given wallet address, enriched with logos, spam indicators, and so on.

/account/:network/:address/nft: Query all NFTs owned by a specified wallet, including metadata, collection insights, etc. 

Check out the Solana Wallet API documentation page to learn more about this top-tier interface!

Token API: Query Real-Time Prices, Metadata, & Swaps

With the Token API, you can get any token’s real-time price, metadata, swaps, snipers, pairs, and more with just a single API call. Utilize this premier interface to create everything from comprehensive price charts to fast and accurate token search functionality with minimal development effort. 

Token API.

Here are three key endpoints of the Token API: 

/token/:network/:address/price: Query the price of any token denominated in both the chain’s native currency and USD. 

/token/:network/pairs/:pairAddress/swaps: Get all swap-related transactions of a given pair address.

/tokens/search: Search for any token by name, symbol, address, or pair address. 

To learn more about this premier tool, please check out the Solana Token API documentation page!

NFT API: Fetch NFT Balances & Metadata

With the NFT API, you can get NFT metadata and balances without breaking a sweat. As such, it’s an excellent API for anyone looking to build NFT marketplaces, NFT-Fi platforms, and other similar projects that need NFT-related data. 

NFT API.

Here are two key endpoints of the NFT API: 

/nft/:network/:address/metadata: Get the NFT metadata for any given contract, including mint, standard, name, symbol, metaplex, and more.

/account/:network/:address/nft: Fetch the NFT balance of a given wallet address, complete with metadata and other valuable insights. 

Check out the Solana NFT API documentation page to learn more about this development tool!

Summary: How to Get Top Solana Token Holders

Insight into token holder data is an excellent way for traders and investors to monitor whales, identify centralization risks, gauge overall market sentiment, and much more. As such, adding these insights to your own platform can help enhance engagement, retention, and overall user value. 

Text: "Summary: How to Get Top Solana Token Holders"

The best and easiest way to get token holder data is to leverage Moralis’ Solana Token Holders API. With this premier tool, you only need a single API request to get top Solana token holders, acquisition data, supply distribution metrics, etc. 

When working with Moralis for Developers, you can build top holder lists, holders charts, supply distribution tables, and much more with minimal development effort! 

So, if you want an easy way to get top Solana token holders, be sure to sign up with Moralis! 

Also, if you want to learn more about what makes Moralis the top crypto data provider, please check out some of our comparison guides. For example, see how our APIs stack up against the CoinGecko API.

 



Source link

Tags: HoldersSolanaTokenTop
Previous Post

Analyst Tells Investors To Be Patient As Solana Price Hits Resistance

Next Post

Tether Buys $458M Bitcoin For Strategy Rival Twenty One Capital

Related Posts

Ronin API – Build on Ronin with Moralis
Web3

Ronin API – Build on Ronin with Moralis

May 28, 2025
How to Build NFT Apps on Solana
Web3

How to Build NFT Apps on Solana

May 23, 2025
Solana NFT API – Exploring the Top 2025 NFT API for Solana
Web3

Solana NFT API – Exploring the Top 2025 NFT API for Solana

May 21, 2025
Get Solana Whales – How to Fetch Top Whales of a Solana Token
Web3

Get Solana Whales – How to Fetch Top Whales of a Solana Token

May 19, 2025
Neobank App Development – How to Build a Web3 Neobank
Web3

Neobank App Development – How to Build a Web3 Neobank

May 16, 2025
Search Crypto Coins – Build a Token Search for Your Coin Screener
Web3

Search Crypto Coins – Build a Token Search for Your Coin Screener

May 12, 2025
Next Post
Tether Buys 8M Bitcoin For Strategy Rival Twenty One Capital

Tether Buys $458M Bitcoin For Strategy Rival Twenty One Capital

Here’s When It’ll Be Time To Flip Cautious on Crypto Markets, According to Analyst Jason Pizzino

Here’s When It’ll Be Time To Flip Cautious on Crypto Markets, According to Analyst Jason Pizzino

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

RECOMMENDED

Metropolitan Museum trustee among victims of deadly Manhattan shooting – The Art Newspaper
NFT

Metropolitan Museum trustee among victims of deadly Manhattan shooting – The Art Newspaper

by crypetonews
July 29, 2025
0

One of the four people killed by a gunman who opened fire inside 345 Park Avenue in New York City...

Digital Euro Alone Can’t Compete With US Stablecoins

Digital Euro Alone Can’t Compete With US Stablecoins

July 28, 2025
Bitcoin Price Watch: Neutral Technicals Leave Bulls and Bears in Deadlock

Bitcoin Price Watch: Neutral Technicals Leave Bulls and Bears in Deadlock

July 27, 2025
Ethena (ENA) rallies 16% as B TVL sparks bullish momentum

Ethena (ENA) rallies 16% as $8B TVL sparks bullish momentum

July 30, 2025
FOMC day is here

FOMC day is here

July 30, 2025
How a Web3 or Blockchain Certification Can Boost Your LinkedIn Visibility

How a Web3 or Blockchain Certification Can Boost Your LinkedIn Visibility

July 29, 2025

Please enter CoinGecko Free Api Key to get this plugin works.
  • Trending
  • Comments
  • Latest
Top 10 NFTs to Watch in 2025 for High-Return Investments

Top 10 NFTs to Watch in 2025 for High-Return Investments

November 22, 2024
Uniswap v4 Teases Major Updates for 2025

Uniswap v4 Teases Major Updates for 2025

January 2, 2025
Enforceable Human-Readable Transactions: Can They Prevent Bybit-Style Hacks?

Enforceable Human-Readable Transactions: Can They Prevent Bybit-Style Hacks?

February 27, 2025
What’s the Difference Between Polygon PoS vs Polygon zkEVM?

What’s the Difference Between Polygon PoS vs Polygon zkEVM?

November 20, 2023
FTT jumps 7% as Backpack launches platform to help FTX victims liquidate claims

FTT jumps 7% as Backpack launches platform to help FTX victims liquidate claims

July 18, 2025
This AI Fitness Model Makes ,000 a Month

This AI Fitness Model Makes $11,000 a Month

November 28, 2023
XRP Official CRYPTO VOTE LIVE NEWS!🔴GENIUS, CLARITY Act

XRP Official CRYPTO VOTE LIVE NEWS!🔴GENIUS, CLARITY Act

46
🚨BIG UPDATE ON WAZIRX || ALT COIN PORTFOLIO NO 1

🚨BIG UPDATE ON WAZIRX || ALT COIN PORTFOLIO NO 1

37
Mine 8,000 In Bitcoin FROM HOME!

Mine $318,000 In Bitcoin FROM HOME!

34
BITCOIN: IT'S HAPPENING NOW (Urgent Update)!!! Bitcoin News Today, Ethereum, Solana, XRP & Chainlink

BITCOIN: IT'S HAPPENING NOW (Urgent Update)!!! Bitcoin News Today, Ethereum, Solana, XRP & Chainlink

33
$TOSHI Set to 20x? Binance Listing Soon!

$TOSHI Set to 20x? Binance Listing Soon!

7
Crypto Trading Strategy || Crypto Trading For Beginners || Crypto Live Trading Strategies

Crypto Trading Strategy || Crypto Trading For Beginners || Crypto Live Trading Strategies

27
JPMorgan CEO Turns from Hater to Crypto Believer & Market Rejoices

JPMorgan CEO Turns from Hater to Crypto Believer & Market Rejoices

August 1, 2025
SEC Chair Launches ‘Project Crypto’ To Position US As Global Crypto Leader

SEC Chair Launches ‘Project Crypto’ To Position US As Global Crypto Leader

August 1, 2025
MEXC Expands Stock Futures Portfolio With Tron Inc. (NASDAQ: TRON) Listing, Introducing TRON/USDT Trading Pair

MEXC Expands Stock Futures Portfolio With Tron Inc. (NASDAQ: TRON) Listing, Introducing TRON/USDT Trading Pair

August 1, 2025
If Dogecoin Loses This Level, Expect A Major Crash: Analyst Warns

If Dogecoin Loses This Level, Expect A Major Crash: Analyst Warns

August 1, 2025
Justin Drake Introduces “Lean Ethereum” Proposal

Justin Drake Introduces “Lean Ethereum” Proposal

August 1, 2025
NFT Marketplace Rarible Adds Support For Somnia NFTs

NFT Marketplace Rarible Adds Support For Somnia NFTs

August 1, 2025
Crypeto News

Find the latest Bitcoin, Ethereum, blockchain, crypto, Business, Fintech News, interviews, and price analysis at Crypeto News.

CATEGORIES

  • Altcoin
  • Analysis
  • Bitcoin
  • Blockchain
  • Crypto Exchanges
  • Crypto Updates
  • DeFi
  • Ethereum
  • Metaverse
  • Mining
  • NFT
  • Regulations
  • Scam Alert
  • Uncategorized
  • Videos
  • Web3

LATEST UPDATES

  • JPMorgan CEO Turns from Hater to Crypto Believer & Market Rejoices
  • SEC Chair Launches ‘Project Crypto’ To Position US As Global Crypto Leader
  • MEXC Expands Stock Futures Portfolio With Tron Inc. (NASDAQ: TRON) Listing, Introducing TRON/USDT Trading Pair
  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact us

Copyright © 2022 Crypeto News.
Crypeto News is not responsible for the content of external sites.

No Result
View All Result
  • Home
  • Bitcoin
  • Crypto Updates
    • General
    • Blockchain
    • Ethereum
    • Altcoin
    • Mining
    • Crypto Exchanges
  • NFT
  • DeFi
  • Web3
  • Metaverse
  • Analysis
  • Regulations
  • Scam Alert
  • Videos

Copyright © 2022 Crypeto News.
Crypeto News is not responsible for the content of external sites.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In