MuchFi
CLOB Pools

Get Pool Orderbook

Get orderbook data for a pool

GET
/clob/pools/{poolId}/orderbook

Path Parameters

poolIdstring

Pool ID

Query Parameters

depth?integer

Order book depth

Default20

Response Body

curl -X GET "https://integrated-api.mainnet.muchfi.xyz/api/clob/pools/string/orderbook?depth=20"
{
  "asks": [
    {
      "price": "string",
      "size": "string"
    }
  ],
  "bids": [
    {
      "price": "string",
      "size": "string"
    }
  ],
  "timestamp": 0
}