get_trending_tokens_by_source
Retrieve top traded tokens from specified platforms like Telegram, Web, or Mobile within the last 12 hours. Returns a formatted table with rank, token name, mint address, trading volume, and total trades. Ideal for tracking trending memecoins and Solana-based tokens.
Instructions
Retrieve top traded tokens on specified source platform in the last 12 hours.
Args:
source (str): The platform to query tokens from. Must be one of: 'Telegram', 'Web', 'Mobile'.
Defaults to 'Telegram'.
limit (int): Maximum number of tokens to return. Defaults to 100.
Returns:
str: A formatted table of trending tokens including rank, token name, mint address,
trading volume, and total trades, or an error message if the query fails.
Raises:
ValueError: If an invalid source value is provided.
httpx.HTTPStatusError: If the Dune API request fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
source | No | Telegram |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"source": {
"default": "Telegram",
"title": "Source",
"type": "string"
}
},
"title": "get_trending_tokens_by_sourceArguments",
"type": "object"
}