> For the complete documentation index, see [llms.txt](https://docs.trade.mn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.trade.mn/api-doc/public-api-endpoints/market-data-endpoints/recent-trades-list-user_data.md).

# Recent trades list (USER\_DATA)

```
GET /api/v3/trades
```

Get recent trades. (Сүүлд биелсэн хэлцлүүд)

**Parameters:**

| Name      | Type   | Mandatory | Description |
| --------- | ------ | --------- | ----------- |
| symbol    | STRING | YES       |             |
| timestamp | LONG   | YES       |             |

**Response:**

```javascript
[
  {
    "quantity": 1000,
    "price": 2.1,
    "timestamp": 1691987568000
  }
];
```
