getPool
Fetch real-time pool state, reserves, and price data for Ethereum-based liquidity pools using poolId.
Instructions
Fetch the latest state of a pool, including reserves and price information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
poolId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"poolId": {
"type": "string"
}
},
"required": [
"poolId"
],
"type": "object"
}