Sunday, June 8, 2025
Catatonic Times
No Result
View All Result
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert
No Result
View All Result
Catatonic Times
No Result
View All Result

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

by Catatonic Times
May 20, 2025
in Web3
Reading Time: 12 mins read
0 0
A A
0
Home Web3
Share on FacebookShare on Twitter


Get the whales of any Solana token in seconds! With Moralis’ Solana Token Holders API, you’ll be able to fetch all the things from prime token whales to provide distribution insights with only a single API name. Energy your crypto mission with real-time token holder information that drives engagement, boosts retention, and enhances the general worth of your platform!

To get began, we’ll instantly take a look at a fast code instance that highlights the accessibility of Moralis’ APIs. Right here’s how simple it’s to get whales for any Solana token: 

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://solana-gateway.moralis.io/token/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/top-holders’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the endpoint above returns an inventory of the Solana token’s prime holders, full with balances, provide percentages, and extra useful information. Right here’s what it will probably appear to be:

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

That’s it! With only a single API request, you’ll be able to simply get prime holders and whales for any Solana token! 

Should you’re wanting to study extra about this, please comply with alongside in as we speak’s tutorial or try the YouTube video under: 

Moreover, should you instantly need to begin utilizing our APIs your self, then click on the button under and enroll with Moralis without spending a dime!

Overview

Entry to prime holders of a token is very helpful for crypto merchants and buyers. With this information, they’ll simply monitor whale motion, copy buying and selling methods, and way more. As such, including an inventory of prime token holders and whales to your crypto platform will assist improve consumer worth, drive engagement, and enhance retention – all of that are important when working a mission!

However how do you get the whales and prime holders of any Solana token? And what are you able to construct with this information? 

For the solutions to the above questions, be a part of us under as we kickstart this information by diving straight into the {industry}’s prime crypto information supplier: Moralis for Builders. Let’s go! 

Introducing Moralis for Builders – The Best Solution to Get the Whales of Any Solana Token

Moralis is a number one crypto information supplier that options world-class APIs and RPC nodes, designed to make on-chain information integration a breeze. Fetch prime Solana whales, a pockets’s totally decoded transaction historical past, real-time token costs, OHLCV candlesticks, NFT transfers, and way more with only a single line of code. Get the instruments, sources, and information you could construct highly effective crypto-enabled initiatives – multi functional place! 

Listed here are three key the explanation why builders select Moralis as their information supplier:

Streamlined Developer Expertise: With Moralis’ outcome-oriented APIs, you get extra information with fewer calls. Construct complete token pages, interactive candlestick charts, insightful transaction timelines, and extra with only a single endpoint.

Cross-Chain Compatibility: Moralis helps all main EVM chains and the Solana community. This implies you need to use one unified toolkit to construct initiatives with help spanning the complete Web3 ecosystem. 

World-Class Safety & Reliability: With a SOC 2 Kind 2 certificates, we will be certain that all Moralis instruments and options ship enterprise-grade safety and reliability. 

With an summary of Moralis, let’s take a more in-depth take a look at the Solana Token Holders API, permitting you to get Solana whales with only one name!

Exploring the Solana Token Holders API

With the Solana Token Holders API, you may get all the things from prime Solana whales to perception about provide distribution with out breaking a sweat. As such, it’s the final word device for anybody trying to fetch and combine information about Solana token holders into their crypto mission! 

Solana Token Holders API.

Let’s discover the three endpoints of the Solana Token Holders API:

/token/:community/:handle/top-holders: Fetch whales and prime holders for any Solana token.

/token/mainnet/holders/:handle: Question a holder abstract for any token on the Solana blockchain, together with short-term pattern information, acquisition insights, and extra.

/token/mainnet/holders/:handle/historic: Get historic holder statistics for any Solana token. 

Let’s now dive straight into our tutorial exhibiting you how one can fetch prime whales of a Solana token!

Full Tutorial: How one can Fetch High Solana Whales in 3 Steps

With the Solana Token Holders API, you may get prime whales and holders of a token in three easy steps: 

Get a Moralis API Key

Write a Script

Run the Code

However earlier than we will kick issues off, you could maintain a number of conditions should you’d prefer to comply with alongside in as we speak’s tutorial!

Stipulations

Be sure you have the next prepared and put in: 

Step 1: Get a Moralis API Key

To name the Solana Token Holders API, you want a Moralis API key. As such, should you haven’t already, create an account by clicking the ”Begin for Free” button on the prime proper:

Red arrow pointing at "Start for Free" button.

After creating an account, you’ll discover your API key immediately below the ”Residence” tab: 

Red arrow pointing at copy button for API key.

Save the important thing for now, as you’re going to want it within the following part to fetch prime whales of a Solana token! 

Step 2: Write a Script

Subsequent, you could create a script to name the /token/:community/:handle/top-holders endpoint. To take action, begin by opening your IDE and establishing a Node.js mission utilizing the next terminal command: 

npm init

From right here, use the instructions under to put in the required dependencies:

npm set up node-fetch –save
npm set up moralis @moralisweb3/common-evm-utils

Open the ”package deal.json” file in your mission listing and add ”kind”: ”module” to the checklist: 

"type": "module" highlighted in code editor.

Arrange a brand new ”index.js” file and add the code under: 

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://solana-gateway.moralis.io/token/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/top-holders’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Lastly, you could configure the code barely by including your key and configuring the parameters to suit your preferences:

Code configurations highlighted in code editor.

Step 3: Run the Code

To run the code, open a brand new terminal and execute the next command in your mission’s root folder: 

node index.js

Doing so will return an inventory of prime Solana whales, full with addresses, balances, provide percentages, and different useful information. Right here’s an instance of what it will probably appear to be: 

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

Congratulations! You now know how one can effortlessly fetch prime whales and holders of any Solana token!

Should you’d prefer to check out the endpoint, please try the get prime token holders documentation for extra info!

Past Fetching High Solana Holders & Whales

Now that you understand how to get prime holders and whales, let’s additionally discover the remaining two endpoints of the Solana Token Holders API: 

Question Solana Token Holders Stats

The /token/mainnet/holders/:handle endpoint gives a abstract of token holder stats. To name this endpoint, simply go alongside a community and an handle parameter. Right here’s a pattern script exhibiting the way it works: 

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://solana-gateway.moralis.io/token/mainnet/holders/2zMMhcVQEXDtdE6vsFS7S7D5oUodfJHE8vd1gnBouauv’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the endpoint above gives you perception right into a token’s holder depend, short-term traits, acquisition information, and provide distribution. Right here’s an instance of what it will probably appear to be:

{
totalHolders: 513238,
holdersByAcquisition: { swap: 161815, switch: 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: { provide: ‘46127367876201534’, supplyPercent: 51.89 },
top25: { provide: ‘54426340492558695’, supplyPercent: 61.23 },
top50: { provide: ‘58627892894350393’, supplyPercent: 65.96 },
top100: { provide: ‘61349275758201721’, supplyPercent: 69.02 },
top250: { provide: ‘64534047701161353’, supplyPercent: 72.6 },
top500: { provide: ‘66981557873551574’, supplyPercent: 75.35 }
}
}

Get Solana Token Holders Timeseries

With the /token/mainnet/holders/:handle/historic endpoint, you’ll be able to question historic holder statistics for any Solana token. To take action, you could go alongside a number of question parameters, together with community, handle, fromDate, toDate, and timeFrame. Right here’s a pattern script: 

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://solana-gateway.moralis.io/token/mainnet/holders/6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN/historic?fromDate=2025-01-01T10percent3A00percent3A00&toDate=2025-02-01T11percent3A00percent3A00&timeFrame=1d&restrict=100’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Working the code above gives you an inventory of timestamps. Every one consists of holder counts, web modifications in holder depend, acquisition insights, and different helpful information. Right here’s an instance of a response:

{
“end 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
}
},
//…
],
}

To study extra about and check the endpoints above, please discover the Solana Token API documentation web page!

Why Do You Have to Fetch High Solana Whales & Different Holder Information?

Integrating token holder insights into your cryptocurrency platform provides many advantages. Listed here are three examples: 

Improve Person Worth: Enriching your platform with token holder information will improve general consumer worth, making your mission extra engaging to crypto buyers and merchants.

Drive Engagement: Actual-time insights and interactive options, akin to holder charts, will be certain that your customers keep lively and engaged in your website.

Increase Retention: Offering correct, reliable information will aid you construct a loyal consumer base that wishes to return to your mission for extra info. 

All in all, integrating Solana token holder insights into your software or web site is a superb strategy to improve worth, drive engagement, and enhance retention – all necessary should you’re trying to run a profitable mission!

Solana Token Holders API Use Circumstances

With the Solana Token Holders API, you’ll be able to seamlessly construct highly effective options to your platform. Listed here are some key examples you’ll doubtless discover fascinating:

Lists of High Holders & Whales: With simply the /token/:community/:handle/top-holders endpoint, you’ll be able to simply construct lists displaying any token’s prime holders and whales. This can assist customers establish important addresses, together with their balances, provide percentages, and different related particulars. Right here’s an instance of what it will probably appear to be:

Solana whales top list.

Developments, Acquisition, & Distribution Tables: With the /token/mainnet/holders/:handle endpoint, you’ll be able to construct tables that present traits, acquisition information, and provide distribution. These tables will enable your customers to research short-term traits, perceive how tokens had been acquired, and spot potential focus dangers. Right here’s what this characteristic would possibly appear to be:

Holders tables.

Token Holders Charts: Utilizing the /token/mainnet/holders/:handle/historic endpoint, you’ll be able to simply construct holder charts to your mission, displaying holder depend over varied time durations. Including a characteristic like this to your platform provides your customers the instruments they should analyze each short- and long-term traits with out breaking a sweat. Right here’s an instance of what the charts can appear to be:

Holders chart.

Exploring Different Moralis APIs

Along with the Solana Token Holders API, Moralis gives a complete vary of different industry-leading growth instruments. Listed here are three APIs you’ll doubtless discover helpful when constructing crypto initiatives: 

Pockets API: Utilizing the Pockets API, you’ll be able to effortlessly question any pockets’s decoded transaction historical past, token balances, NFT holdings, and extra with only a single request. It’s the final word device for constructing portfolio views, detailed transaction timelines, and different related options.

Token API: With the Token API, you’ll be able to simply get a token’s real-time worth, swaps, snipers, pairs, metadata, and extra with minimal effort. Make the most of the Token API to effortlessly create all the things from detailed token pages to interactive worth charts. 

NFT API: With the NFT API, you may get NFT balances and metadata with only a single line of code. This can be a nice API for anybody trying to construct NFT-Fi instruments, NFT marketplaces, and different related initiatives. 

Should you’d prefer to study extra about Moralis and discover all our industry-leading instruments, please try the Web3 API web page for extra info! 

Abstract: Get Solana Whales – How one can Fetch High Whales of a Solana Token

Perception into prime token holders is extraordinarily helpful to merchants and buyers. With this info, they’ll simply copy buying and selling methods, monitor the exercise of whales, and way more. As such, by integrating holder insights into your personal platform, you’ll give your customers the information they should commerce smarter and extra effectively. 

Text: "Summary: Get Solana Whales - How to Fetch Top Whales of a Solana Token"

The most effective and best strategy to get the whales of any token is to make use of Moralis’ Solana Token Holders API. With this premier device, you’ll be able to fetch all the things from prime whales to acquisition insights for any token on the Solana blockchain community with ease. 

Listed here are the three endpoints of this premier API: 

/token/:community/:handle/top-holders: Get whales and prime holders of any Solana token.

/token/mainnet/holders/:handle: Fetch a holder abstract for any Solana token.

/token/mainnet/holders/:handle/historic: Question any Solana token’s historic holder statistics.

When utilizing this premier device, you’ll be able to construct all the things from lists of prime whales to superior holder charts with only a single endpoint! 

So, should you’re in search of a straightforward strategy to fetch the highest whales of a Solana token, make certain to enroll in a Moralis account as we speak! 

Additionally, if you wish to study extra about what makes Moralis the main crypto information supplier, remember to try a few of our comparability guides. For example, see how our toolset compares to both the DeBank API or the CoinGecko API.

 



Source link

Tags: FetchSolanatokentopWhales
Previous Post

eToro to Offer Insurance in France Courtesy of Generali Partnership

Next Post

Pinpointing Regulation Amid Uncertainty – Finovate

Related Posts

Cudis Bets on Wearables, AI and a Solana Token to Drive the Longevity Movement
Web3

Cudis Bets on Wearables, AI and a Solana Token to Drive the Longevity Movement

June 8, 2025
Crypto Advocacy Groups Urge Dismissal of Case Against Bitcoin Mixer Samourai
Web3

Crypto Advocacy Groups Urge Dismissal of Case Against Bitcoin Mixer Samourai

June 7, 2025
Yield bearing stablecoin comes to Solana via Maple Finance’s Chainlink integration
Web3

Yield bearing stablecoin comes to Solana via Maple Finance’s Chainlink integration

June 7, 2025
How Circle’s IPO Stacks Up Against Other Crypto Market Debuts
Web3

How Circle’s IPO Stacks Up Against Other Crypto Market Debuts

June 6, 2025
VerifiedX Launches Vault Accounts – Setting a New Standard for Bitcoin Security
Web3

VerifiedX Launches Vault Accounts – Setting a New Standard for Bitcoin Security

June 6, 2025
Why Democrat Zoltan Istvan Is Backing Basic Income, Home Robots in California Governor Bid
Web3

Why Democrat Zoltan Istvan Is Backing Basic Income, Home Robots in California Governor Bid

June 5, 2025
Next Post
Pinpointing Regulation Amid Uncertainty – Finovate

Pinpointing Regulation Amid Uncertainty - Finovate

Finastra Sells Off Treasury and Capital Markets Division

Finastra Sells Off Treasury and Capital Markets Division

Leave a Reply Cancel reply

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

Catatonic Times

Stay ahead in the cryptocurrency world with Catatonic Times. Get real-time updates, expert analyses, and in-depth blockchain news tailored for investors, enthusiasts, and innovators.

Categories

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

Latest Updates

  • Ethereum Enters Strategic Pause: Will Accumulation Below Resistance Spark A Surge?
  • Chainlink Bullish Signal Stands Firm, But Bitcoin Is Calling The Shots
  • The ‘Bitcoin Family’ has split and hidden seed phrase across 4 continents amid rising kidnappings
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact Us

Copyright © 2024 Catatonic Times.
Catatonic Times 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
No Result
View All Result
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert

Copyright © 2024 Catatonic Times.
Catatonic Times is not responsible for the content of external sites.