getNetworkPools
Retrieve top liquidity pools for a specific blockchain network to analyze trading volumes, prices, and transaction data for decentralized exchange operations.
Instructions
PRIMARY POOL FUNCTION: Get top liquidity pools on a specific network. This is the MAIN way to get pool data - there is NO global pools function. Use this instead of any "getTopPools" or "getAllPools" concepts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of items per page (max 100) | |
network | Yes | Network ID from getNetworks (required) - e.g., "ethereum", "solana" | |
orderBy | No | Field to order by | volume_usd |
page | No | Page number for pagination | |
sort | No | Sort order | desc |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of items per page (max 100)",
"type": "number"
},
"network": {
"description": "Network ID from getNetworks (required) - e.g., \"ethereum\", \"solana\"",
"type": "string"
},
"orderBy": {
"default": "volume_usd",
"description": "Field to order by",
"enum": [
"volume_usd",
"price_usd",
"transactions",
"last_price_change_usd_24h",
"created_at"
],
"type": "string"
},
"page": {
"default": 0,
"description": "Page number for pagination",
"type": "number"
},
"sort": {
"default": "desc",
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
}
},
"required": [
"network"
],
"type": "object"
}