# Trades

## Trades

<mark style="color:green;">`GET`</mark> <https://sapi.fixt.io/api/v0/market/trades?symbol=BTC_USDT>

**Parameters**

| Name     | Description                |
| -------- | -------------------------- |
| `symbol` | A pair such as “BTC\_USDT” |

**Response Body**

| Name          | Type    | Description                                                                                                                                                                                                            |
| ------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| trade\_id     | Integer | <p>A unique ID associated with the trade for the currency pair transaction</p><p> Note: Unix timestamp does not qualify as trade\_id.</p>                                                                              |
| price         | decimal | Last transacted price of base currency based on given quote currency                                                                                                                                                   |
| base\_volume  | decimal | Transaction amount in BASE currency.                                                                                                                                                                                   |
| quote\_volume | decimal | Transaction amount in QUOTE currency.                                                                                                                                                                                  |
| timestamp     | Integer | Unix timestamp in milliseconds for when the transaction occurred.                                                                                                                                                      |
| type          | string  | <p>Used to determine whether or not the transaction originated as a buy or sell.</p><p>  Buy – Identifies an ask was removed from the order book.</p><p>  Sell – Identifies a bid was removed from the order book.</p> |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "status":"true",
    "msg":"success",
    "result": [
        {
            "trade_id": 12345,
            "price": 70000,
            "base_volume": 0,
            "quote_volume": 0,
            "timestamp": ‭1585177482652‬,
            "type": sell,
        }
    ]
}
```

{% endtab %}
{% endtabs %}
