getPoolTransactions
Retrieve recent transaction history for any liquidity pool across multiple blockchains, displaying swaps, liquidity additions, and removals to monitor pool activity and trading patterns.
Instructions
Get recent transactions for a specific pool. Shows swaps, adds, removes. Requires network and pool address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Transaction ID used for cursor-based pagination | |
limit | No | Number of items per page (max 100) | |
network | Yes | Network ID from getNetworks (e.g., "ethereum", "solana") | |
page | No | Page number for pagination (up to 100 pages) | |
poolAddress | Yes | Pool address or identifier |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Transaction ID used for cursor-based pagination",
"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"
},
"page": {
"default": 0,
"description": "Page number for pagination (up to 100 pages)",
"type": "number"
},
"poolAddress": {
"description": "Pool address or identifier",
"type": "string"
}
},
"required": [
"network",
"poolAddress"
],
"type": "object"
}