GET
/
clob
/
markets
/
{poolId}
/
orderbook
Get Market Orderbook
curl --request GET \
  --url https://integrated-api.testnet.muchfi.xyz/api/clob/markets/{poolId}/orderbook
{
  "asks": [
    {
      "price": "<string>",
      "size": "<string>"
    }
  ],
  "bids": [
    {
      "price": "<string>",
      "size": "<string>"
    }
  ],
  "timestamp": 123
}

Path Parameters

poolId
string
required

Pool ID

Query Parameters

depth
integer

Order book depth

Response

200 - application/json

Order book

asks
object[]
bids
object[]
timestamp
integer