get_pool_trades
Retrieve recent trades for a specific DeFi pool, filtered by network and contract address, with optional volume thresholds for precise market analysis.
Instructions
Get recent trades for a specific pool
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos') | |
poolAddress | Yes | Pool contract address | |
trade_volume_in_usd_greater_than | No | Filter trades with volume greater than this USD amount (optional) |
Input Schema (JSON Schema)
{
"properties": {
"network": {
"description": "Network ID (e.g., 'eth', 'bsc', 'polygon_pos')",
"type": "string"
},
"poolAddress": {
"description": "Pool contract address",
"type": "string"
},
"trade_volume_in_usd_greater_than": {
"description": "Filter trades with volume greater than this USD amount (optional)",
"type": "number"
}
},
"required": [
"network",
"poolAddress"
],
"type": "object"
}