Search Pools by Symbol Pair
Description
Discover all known liquidity pools across all supported chains and DEX protocols for a specific token pair, such as SOL/USDC
.
Supports optional filtering by 24h volume or TVL in USD.
URL
Headers
Query Parameters
symbol
string
Yes
Token pair in the format BASE/QUOTE
(e.g., SOL/USDC
). Case-insensitive.
minVolumeUsd
number
No
Filters out pools with 24h volume below this USD threshold. Default: 0
.
minUsdTvl
number
No
Filters out pools with TVL below this USD threshold. Default: 0
.
Response
Returns an array of real-time pool state objects, each representing a matching pool across chains and protocols.
Response Fields
data
—object
chainId
—string
Aleno chain identifier (e.g.,eth
,arb
, etc.).address
—string
Pool contract address.protocol
—string
Protocol identifier (e.g.uniswap_v2
,sushiswap
, etc.).usdTvl
—number
Total USD value locked in the pool.h24UsdVolume
—number
24-hour trading volume in USD across all token pairs in the pool.tokens
—array of object
Per-token liquidity and volume details:symbol
—string
Token symbol.address
—string
Token contract address.decimals
—number
Token decimals.tvl
—number
Token balance in the pool (raw units, adjusted for decimals).usdTvl
—number
USD-equivalent value of the token’s liquidity in the pool.h24Volume
—number
Token trading volume over the last 24 hours (raw units).h24UsdVolume
—number
24-hour trading volume in USD for the token.priceUsd
—number
USD price of the token implied from the pool state.
pairs
—array of object
Token-to-token price ratios within the pool:base
—string
Symbol of the base token.quote
—string
Symbol of the quote token.baseToQuotePrice
—number
Price of 1 unit of base token in quote token units.quoteToBasePrice
—number
Price of 1 unit of quote token in base token units.h24UsdVolume
—number
24-hour USD trading volume for this token pair.
Example Request
Example Response
Last updated
Was this helpful?