v1
latestOpenAPI 3.0.32026-07-2613529376.3 KBPublic API V4
Recent Trades
The endpoint retrieves the trades that have been executed recently on the requested market.
<Note> The API caches the response for 1 second </Note> <Note> Public trade data can include executions that originate from RPI orders. Public order book feeds (`depth`, `bookTicker`) exclude RPI orders. RPI orders appear only in private active orders and in the exchange UI order book (web and mobile). </Note> <Warning> Rate limit 2000 requests/10 sec. </Warning>get/api/v4/public/trades/{market}
Path parameters
marketstring required
Example:BTC_USDT
Market pair name
Query parameters
type'buy' | 'sell'
Example:sell
Filter by trade side. Omit to return both buy and sell trades.
Response
Successful response
Example response
[
{
"tradeID": 158056419,
"price": "9186.13",
"quote_volume": "0.0021",
"base_volume": "9186.13",
"trade_timestamp": 1594391747,
"type": "sell",
"rpi": true
}
]