CLOB Orders
Get All Orders
Get all orders with optional filters
Query Parameters
market?string
Filter by market/pool ID
status?string
Filter by order status
limit?integer
Number of results
cursor?string
Cursor for pagination
Response Body
curl -X GET "https://integrated-api.mainnet.muchfi.xyz/api/clob/orders?market=string&status=string&limit=0&cursor=string"{
"orders": [
{
"transactionId": "string",
"poolId": "string",
"user": "string",
"side": "BUY",
"price": "string",
"size": "string",
"filledSize": "string",
"status": "string",
"timestamp": 0
}
],
"cursor": "string"
}