tapp_get_pools
Retrieve a paginated list of pools on Tapp Exchange, filtered by type or sorted by TVL, to manage and analyze decentralized exchange liquidity.
Instructions
Get a paginated list of available pools on Tapp Exchange, optionally filtered by type and sorted by TVL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | The page number to fetch (defaults to 1) | |
size | No | Number of items per page (defaults to 10) | |
sortBy | No | Field to sort by (defaults to 'tvl') | |
type | No | Pool type filter: 'AMM', 'CLMM', or 'STABLE' |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "The page number to fetch (defaults to 1)",
"type": "number"
},
"size": {
"description": "Number of items per page (defaults to 10)",
"type": "number"
},
"sortBy": {
"description": "Field to sort by (defaults to 'tvl')",
"type": "string"
},
"type": {
"description": "Pool type filter: 'AMM', 'CLMM', or 'STABLE'",
"type": "string"
}
},
"type": "object"
}