get_trending_tokens_by_kol_trading_volume
Identify trending Solana memecoins by analyzing trading activity from key opinion leaders (KOLs). Retrieve a formatted table with token names, mint addresses, KOL buys, total buys, and trading volume for informed decision-making.
Instructions
Retrieve tokens with the highest trading volume by memecoin KOLs.
Args:
limit (int): Maximum number of tokens to return. Defaults to 100.
Returns:
str: A formatted table of trending tokens by KOL trading volume including
token name, mint address, unique KOL buys, total buys, and total volume,
or an error message if the query fails.
Raises:
httpx.HTTPStatusError: If the Dune API request fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
}
},
"title": "get_trending_tokens_by_kol_trading_volumeArguments",
"type": "object"
}