GET /trades
Request
GET /api/v1/trades?exchange={exchange}&symbol={symbol}&limit={limit}Parameters
Parameter
Type
Required
Default
Description
Response
{
"exchange": "mexc",
"symbol": "BTC/USDT",
"trades": [
{
"id": "123456",
"price": 42150.50,
"amount": 0.15,
"side": "buy",
"timestamp": 1710000000000
}
],
"summary": {
"count": 50,
"buyCount": 28,
"sellCount": 22,
"buyVolume": 12.5,
"sellVolume": 9.8,
"avgPrice": 42148.25,
"vwap": 42147.80
},
"timestamp": 1710000000000
}Summary Fields
Field
Type
Description
Examples
Last updated