# Trade history (TRADE)

```
GET /api/v3/order/trade/history
```

Get all account filled orders. (Арилжааны түүх)

**Parameters:**

| Name      | Type   | Mandatory | Description             |
| --------- | ------ | --------- | ----------------------- |
| symbol    | STRING | NO        |                         |
| page      | INT    | NO        | Default: 0              |
| size      | INT    | NO        | Default: 100; max 1000. |
| timestamp | LONG   | YES       |                         |

**Response:**

```javascript
{
  "items": [
    {
      "id": "acb59a7f-62c6-40ae-81e5-c92fb0223352",
      "orderId": "acb59a7f-62c6-40ae-81e5-c92fb0223351",
      "tradeAt": "2006-01-02T17:08:05.279+08:00",
      "symbol": "TRD/MNT",
      "side": "BUY",
      "sideName": "Авах",
      "price": "11",
      "quantity": "100",
      "total": "1100",
      "commission": "0.02",
      "commissionAssetCode": "TRD"
    },
  ],
  "page": 0,
  "size": 100,
  "total_pages": 1,
  "total": 1
}
```
