v19

latestOpenAPI 3.0.0raw.githubusercontent.com2026-05-25200153.4 KB
Pools

Get onchain statistics for a specific pool

Retrieve aggregated statistics including total open positions, input values, and unique users for a pool

get/pools/{poolId}/onchain-stats

Path parameters

poolIdstring required

The pool address

Response

Successfully retrieved pool onchain stats

statusstring

Example response

{
  "status": "success",
  "data": {
    "poolStats": [
      {
        "pool": "7d51qGEeAKiPakkxLoHda9egShXQLJcjFYpHEcX4d3EM",
        "total_open_positions": 42,
        "unique_owners": 15
      }
    ]
  }
}