GET
/
clob
/
markets
/
{poolId}
/
trades
Get Recent Trades
curl --request GET \
  --url https://integrated-api.testnet.muchfi.xyz/api/clob/markets/{poolId}/trades
{
  "trades": [
    {
      "tradeId": "<string>",
      "price": "<string>",
      "size": "<string>",
      "side": "<string>",
      "timestamp": 123
    }
  ],
  "cursor": "<string>"
}

Path Parameters

poolId
string
required

Pool ID

Query Parameters

limit
integer

Number of trades

cursor
string

Cursor for pagination

Response

200 - application/json

Recent trades

trades
object[]
cursor
string