Skip to main content
GET
/
pools
/
{poolId}
/
info
Get detailed information for a specific pool
curl --request GET \
  --url https://api.lpagent.io/open-api/v1/pools/{poolId}/info \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "data": {
    "type": "meteora",
    "tokenInfo": [
      {
        "status": "success",
        "data": [
          {
            "id": "<string>",
            "name": "<string>",
            "symbol": "<string>",
            "icon": "<string>",
            "decimals": 123,
            "mcap": 123,
            "fdv": 123,
            "usdPrice": 123,
            "organicScore": 123,
            "holderCount": 123
          }
        ]
      }
    ],
    "poolStats": {},
    "poolState": {},
    "poolDb": {},
    "amountX": 1500.25,
    "amountY": 50000,
    "feeInfo": {
      "baseFeeRatePercentage": 123,
      "maxFeeRatePercentage": 123,
      "protocolFeePercentage": 123,
      "dynamicFee": 123
    },
    "feeStats": [
      {}
    ],
    "liquidityViz": {
      "activeBin": {
        "binId": 123,
        "price": "<string>",
        "pricePerToken": "<string>"
      },
      "bins": [
        {
          "binId": 123,
          "xAmount": 123,
          "yAmount": 123,
          "price": "<string>",
          "pricePerToken": "<string>"
        }
      ]
    }
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication

Path Parameters

poolId
string
required

The pool address

Response

Successfully retrieved pool info

status
string
Example:

"success"

data
object