# Live Trade

<mark style="color:blue;">`GET`</mark> `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<mark style="color:red;">\*</mark>   | String  | BTCUSDT, ETHUSDT etc.     |
| limit                                      | Integer | Count of trades           |
| marketId<mark style="color:red;">\*</mark> | Integer | Market id number for pair |

{% tabs %}
{% tab title="200: OK Successful" %}

```json
{
  "data": [
    {
      "id": 115718374,
      "quantity": 0.009138,
      "price": 19345.28,
      "time": 1666615471000,
      "side": "buy"
    }
  ],
  "success": true,
  "message": "Operation successful.",
  "timestamp": 1666615473430
}
```

{% endtab %}
{% endtabs %}
