get_recent_kol_buys
Retrieve a formatted table detailing recent token purchases by memecoin Key Opinion Leaders (KOLs), including buy time, token details, and purchase amount, for tracking trends and insights.
Instructions
Retrieve recent token purchases by memecoin Key Opinion Leaders (KOLs).
Args:
limit (int): Maximum number of buy transactions to return. Defaults to 100.
Returns:
str: A formatted table of recent KOL buys including buy time, KOL name,
token name, mint address, and purchase amount, 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_recent_kol_buysArguments",
"type": "object"
}