Live Trade
GET /trade/v2/public/trade
GET
https://api.nitroex.io/trade/v2/public/trade?marketId=101&symbol=BTCUSDT&limit=1
This endpoint allows you get live trade data.
You can use marketId or symbol for pair, just one of them is enough.
Query Parameters
Name
Type
Description
symbol*
String
BTCUSDT, ETHUSDT etc.
limit
Integer
Count of trades
marketId*
Integer
Market id number for pair
{
"data": [
{
"id": 115718374,
"quantity": 0.009138,
"price": 19345.28,
"time": 1666615471000,
"side": "buy"
}
],
"success": true,
"message": "Operation successful.",
"timestamp": 1666615473430
}
Last updated
Was this helpful?