coingeckotokeninfoagent_get_trending_pools
Retrieve trending on-chain pools with token data from CoinGecko. Specify attributes like base_token, quote_token, dex, or network. Supports fetching 1 to 10 pools for detailed insights.
Instructions
Get up to 10 trending on-chain pools with token data from CoinGecko. The 'include' parameter must be one of: base_token, quote_token, dex, or network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include | No | Single attribute to include: base_token, quote_token, dex, or network | base_token |
pools | No | Number of pools to return (1-10) |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"default": "base_token",
"description": "Single attribute to include: base_token, quote_token, dex, or network",
"enum": [
"base_token",
"quote_token",
"dex",
"network"
],
"type": "string"
},
"pools": {
"default": 4,
"description": "Number of pools to return (1-10)",
"maximum": 10,
"minimum": 1,
"type": "integer"
}
},
"required": [],
"type": "object"
}