get_trending_pools_by_network
Identify trending DeFi pools by network to analyze liquidity and trading activity. Specify network, duration, and attributes like tokens or DEX for targeted insights.
Instructions
Get trending pools on a specific network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | Duration for trending: '5m', '1h', '6h', '24h' (optional, default: '24h') | |
include | No | Attributes to include: 'base_token', 'quote_token', 'dex' (comma-separated) | |
network | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos') | |
page | No | Page number for pagination (optional, default: 1) |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Duration for trending: '5m', '1h', '6h', '24h' (optional, default: '24h')",
"enum": [
"5m",
"1h",
"6h",
"24h"
],
"type": "string"
},
"include": {
"description": "Attributes to include: 'base_token', 'quote_token', 'dex' (comma-separated)",
"type": "string"
},
"network": {
"description": "Network ID (e.g., 'eth', 'bsc', 'polygon_pos')",
"type": "string"
},
"page": {
"description": "Page number for pagination (optional, default: 1)",
"type": "integer"
}
},
"required": [
"network"
],
"type": "object"
}