get_recent_pumpfun_graduates
Track newly launched tokens on Pump.fun in the last 24 hours. Retrieve detailed data including token name, mint address, market cap, and trade count to analyze recent memecoin activity.
Instructions
Retrieve the most recently graduated tokens from Pump.fun in the last 24 hours.
Args:
limit (int): Maximum number of tokens to return. Defaults to 100.
Returns:
str: A formatted table of recent Pump.fun graduates including graduation time,
token name, mint address, market capitalization, and trade count,
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_pumpfun_graduatesArguments",
"type": "object"
}