get_top_pools_by_dex
Fetch top liquidity pools from a specific network and DEX on GeckoTerminal, returning a table with pool address, volume, reserves, and price, sorted by transaction count or volume.
Instructions
Query top pools for a specific network and DEX on GeckoTerminal and return a formatted table.
Args:
network: The network identifier (default: "eth" for Ethereum)
dex: The DEX identifier (default: "sushiswap")
page: Page number for pagination (default: 1)
sort: Sort pools by field (options: "h24_tx_count_desc", "h24_volume_usd_desc"; default: "h24_tx_count_desc")
include: Comma-separated attributes to include (e.g., "base_token,quote_token,dex"; default: "base_token,quote_token,dex")
Returns:
Formatted table as a string with columns: dex, name, base_price_in_quote, reserve_usd, volume_usd_24h, addressInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | No | eth | |
| dex | No | sushiswap | |
| page | No | ||
| sort | No | h24_tx_count_desc | |
| include | No | base_token,quote_token,dex |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |