Skip to main content

Get LP Pool List

Query available liquidity pools with optional filtering by token symbol.

info
  • Use this to help users discover and compare available LP pools
  • Filter by tokenSymbol to find pools containing a specific token
  • Rate Limit: 5 req/s (per user), 5000 req/s (global)

HTTP Request

POST/v5/alpha/lp/pool-list

Request Parameters

ParameterRequiredTypeComments
tokenSymbolfalsestringSearch pools containing this token symbol, e.g. ETH, USDC

Response Parameters

ParameterTypeComments
poolsarrayPool list
> poolAddressstringPool contract address
> poolNamestringPool name
> poolTagstringPool category tag
> apystringAnnual percentage yield
> tvlstringTotal value locked (USD)
> token0SymbolstringFirst token symbol
> token0IconUrlDaystringFirst token icon URL (light mode)
> token0IconUrlNightstringFirst token icon URL (dark mode)
> token1SymbolstringSecond token symbol
> token1IconUrlDaystringSecond token icon URL (light mode)
> token1IconUrlNightstringSecond token icon URL (dark mode)
> chainCodestringBlockchain identifier
> chainIconUrlstringBlockchain icon URL

Request Example

POST /v5/alpha/lp/pool-list HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1704067200000
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

{
"tokenSymbol": "ETH"
}

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"pools": [
{
"poolAddress": "0x1234567890abcdef",
"poolName": "ETH-USDC Pool",
"poolTag": "Trending",
"apy": "12.5",
"tvl": "1000000",
"token0Symbol": "ETH",
"token0IconUrlDay": "",
"token0IconUrlNight": "",
"token1Symbol": "USDC",
"token1IconUrlDay": "",
"token1IconUrlNight": "",
"chainCode": "",
"chainIconUrl": ""
}
]
},
"retExtInfo": {},
"time": 1704067200000
}