For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 and chainId.

  • This endpoint only supports on-chain assets.

  • Fiat currencies like USD are not present on-chain as standalone assets, so queries using fiat as a quote (e.g., SOL/USD) will return no results.

  • To get USD-denominated quotes, seeGet Tickers

URL

GET https://pricing.aleno.ai/v1/pools/search?symbol={base}/{quote}

Headers

x-api-key: your-api-key

Query Parameters

Name
Type
Required
Description

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.

chainId

string

No

Filters results to pools on a specific chain (e.g., 1 for Ethereum, 137 for Polygon). If omitted, pools from all chains are considered.

Response

Returns an array of real-time pool state objects, each representing a matching pool across chains and protocols.

Example Request


Example Response

Last updated