getTokenPools
Find liquidity pools containing a specific cryptocurrency token on any supported blockchain network. Use this tool to identify where tokens are traded across decentralized exchanges.
Instructions
Get liquidity pools containing a specific token on a network. Great for finding where a token is traded.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | Filter pools that contain this additional token address | |
limit | No | Number of items per page (max 100) | |
network | Yes | Network ID from getNetworks (e.g., "ethereum", "solana") | |
orderBy | No | Field to order by | volume_usd |
page | No | Page number for pagination | |
reorder | No | If true, reorders the pool so that the specified token becomes the primary token for all metrics | |
sort | No | Sort order | desc |
tokenAddress | Yes | Token address or identifier |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Filter pools that contain this additional token address",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of items per page (max 100)",
"type": "number"
},
"network": {
"description": "Network ID from getNetworks (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"
},
"reorder": {
"description": "If true, reorders the pool so that the specified token becomes the primary token for all metrics",
"type": "boolean"
},
"sort": {
"default": "desc",
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"tokenAddress": {
"description": "Token address or identifier",
"type": "string"
}
},
"required": [
"network",
"tokenAddress"
],
"type": "object"
}