Get Execution Info
Description
Get the latest execution information. The default limit is 500, with a maximum of 1,000.
HTTP Request
GET /v3/market/trades
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| symbol | Yes | String | A trading pair |
| limit | No | Integer | The default limit is 500, with a maximum of 1000. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| id | String | Trade ID |
| px | String | Execution price |
| qty | String | Trading unit, the quantity of the base currency, or Cont for the number of contracts. |
| amt | String | Trading unit, the quantity of the quote currency. |
| side | String | Trade side, Enumerate: BUY, SELL |
| cT | String | Timestamp of execution time |
Request Example
{
"symbol": "BTC_USDT_PERP",
"limit": ""
}
Response Example
{
"code": 200,
"msg": "Success",
"data": [
{
"id": "194",
"px": "60000",
"qty": "110",
"amt": "209.00",
"side": "SELL",
"cT": "1648690080545"
}
]
}