getPoolTransactions
Retrieve recent transactions for a specific pool, including swaps, adds, and removes. Specify network and pool address to access detailed activity data, with options for pagination and cursor-based navigation.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}