Get available pools

Learn how to list available pools

Description

Sentry supports thousands of pools. To list available pools, search for specific pools and get data on this pools, the following route can be used.

Endpoint

GET https://sentry.aleno.ai/pools

Query parameters

NamerequiredTypeDescription

chainId

required

string

chain ID

addresses

optional

string list

Target pool addresses (should be in lower case). If provided, only pools matching the target addresses will be returned. If not provided, all available pools will be returned.

Payload

No payload.

CURL example

curl -X GET \
  'https://sentry.aleno.ai/pools?chainId=eth&addresses=0xb576491f1e6e5e62f1d8f26062ee822b40b0e0d4,0x4ebdf703948ddcea3b11f675b4d1fba9d2414a14' \
  -H 'accept: application/json'

Result

Returns list of Pool objects supported on Sentry.

{
    "data": [
        {
            "address": "0xb576491f1e6e5e62f1d8f26062ee822b40b0e0d4",
            "chainID": "eth",
            "name": "CVX / WETH",
            "protocolId": "curve",
            "baseProtocolId": "curve",
            "tokenAddresses": [
                "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
            ]
        },
        {
            "address": "0x4ebdf703948ddcea3b11f675b4d1fba9d2414a14",
            "chainID": "eth",
            "name": "crvUSD / WETH / CRV",
            "protocolId": "curve",
            "baseProtocolId": "curve",
            "tokenAddresses": [
                "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e",
                "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                "0xd533a949740bb3306d119cc777fa900ba034cd52"
            ]
        }
    ]
}

Last updated