NitroEx API Documentation
  • General Overview
  • Public Endpoints
    • Exchange Info
    • Market List
    • Summary
    • Ticker
    • Order Book
    • Live Trade
    • K-Line Chart
Powered by GitBook
On this page

Was this helpful?

  1. Public Endpoints

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
}
PreviousOrder BookNextK-Line Chart

Last updated 2 years ago

Was this helpful?