getHoldersTop
This API retrieves a list of top wallets interacting with a given token, ranked by trading volume. It provides insights into buying and selling activities.
Example Request
Here’s an example of calling the API using curl
:
Endpoint: /findHoldersTop Method: GET Summary: Query the top wallet transactions for a specific token.Parameters
Name
Type
Required
Description
Example
apiKey
String
Yes
API Key for authentication
tokenAddress
String
Yes
Address of the token
GMk6j2defJhS7F194toqmJNFNhAkbDXhYJo5oR3Rpump
count
Integer
Yes
Number of records per page
100
page
Integer
Yes
Page number
1
blockchain
String
Yes
Blockchain identifier
solana
Response
Status: 200 (Success)
Content Type: application/json
Structure:
json
Response Fields Explanation
Field
Type
Description
walletAddress
String
The blockchain address of the wallet interacting with the token.
bought
Double
Total amount of the token purchased by this wallet (in token units).
sideVolume
Double
Volume of the token traded on one side (e.g., buy or sell) in native currency (e.g., SOL).
sold
Double
Total amount of the token sold by this wallet (in token units).
volume
Double
Total trading volume of the token by this wallet (bought + sold, in token units).
volumeUsd
Double
Total trading volume converted to USD based on current market rates.
Last updated