getPoolDetails
Retrieve detailed information about a specific decentralized exchange pool, including token pairs, liquidity, and trading data, using network ID and pool address.
Instructions
Get detailed information about a specific pool. Requires network ID from getNetworks and a pool address.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inversed | No | Whether to invert the price ratio | |
network | Yes | Network ID from getNetworks (e.g., "ethereum", "solana") | |
poolAddress | Yes | Pool address or identifier |
Input Schema (JSON Schema)
{
"properties": {
"inversed": {
"default": false,
"description": "Whether to invert the price ratio",
"type": "boolean"
},
"network": {
"description": "Network ID from getNetworks (e.g., \"ethereum\", \"solana\")",
"type": "string"
},
"poolAddress": {
"description": "Pool address or identifier",
"type": "string"
}
},
"required": [
"network",
"poolAddress"
],
"type": "object"
}