get_pumpfun_graduates_by_trading_volume
Retrieve and analyze Pump.fun tokens with the highest trading volume in the last 24 hours. Returns a formatted table with volume rank, token details, and graduation time for informed Solana memecoin tracking.
Instructions
Retrieve Pump.fun token launches sorted by highest trading volume in the last 24 hours.
Args:
limit (int): Maximum number of tokens to return. Defaults to 100.
Returns:
str: A formatted table of Pump.fun graduates including volume rank, token name,
mint address, trading volume, and graduation time, 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_pumpfun_graduates_by_trading_volumeArguments",
"type": "object"
}