CLOB Pools
Get All Pools
Get all trading pools with token data and price variations
Query Parameters
search?string
Search by pool name or address
limit?integer
Number of results to return
cursor?string
Cursor for pagination
Response Body
curl -X GET "https://integrated-api.mainnet.muchfi.xyz/api/clob/pools?search=string&limit=0&cursor=string"{
"pools": [
{
"poolId": "string",
"baseToken": {
"address": "string",
"name": "string",
"symbol": "string",
"decimals": 0,
"totalSupply": "string",
"logoUri": "string",
"priceUsd": 0
},
"quoteToken": {
"address": "string",
"name": "string",
"symbol": "string",
"decimals": 0,
"totalSupply": "string",
"logoUri": "string",
"priceUsd": 0
},
"price": 0,
"priceChange24h": 0,
"volume24h": 0,
"tvl": 0
}
],
"cursor": "string"
}