GET
/
{contractAddress}
/
pools
curl --request GET \
  --url https://api.quantpilot.ai/{contractAddress}/pools \
  --header 'x-api-key: <api-key>'
{
  "pools": [
    {
      "dex": "Uniswap V3",
      "address": "0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8",
      "fee": 0.3,
      "token0": {
        "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "symbol": "USDC"
      },
      "token1": {
        "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
        "symbol": "WETH"
      },
      "liquidity": 15000000,
      "apr": 25.5,
      "volume24h": 1200000
    }
  ],
  "totalPoolCount": 5,
  "totalLiquidity": 45000000
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

contractAddress
string
required

Token contract address

Query Parameters

minLiquidity
number

Minimum liquidity in USD

Response

200 - application/json

List of liquidity pools

The response is of type object.