Check History Executions
Check History Executions
Descriptionâ
This interface is used to query historical order execution records, including buy and sell execution records. Does not support today's execution query.
HTTP Requestâ
- GET /api/v3/stockplus/trade/history-executions
- Rate limit: 30 times/30s (UID), minimum interval 0.02 seconds
- Permission: Trade (read only)
Request
curl "https://api.bitget.com/api/v3/stockplus/trade/history-executions?symbol=AAPL.US" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Symbol, using ticker.region format, e.g. AAPL.US |
| startAt | Number | No | Start time, timestamp in seconds, e.g. 1650410999. Defaults to 90 days before end time or current time |
| endAt | Number | No | End time, timestamp in seconds, e.g. 1650410999. Defaults to 90 days after start time or current time |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"hasMore": false,
"trades": [
{
"orderId": "701276261045858304",
"tradeId": "0f40217c-a73c-410d-b599-2ff6a9ee762e",
"symbol": "AAPL.US",
"tradeDoneAt": "2024-12-16T12:07:12Z",
"quantity": 1,
"price": 150.00
}
]
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| hasMore | Boolean | Whether there is more data. Max 1000 orders per query; hasMore is true when results exceed 1000 |
| trades | List<Object> | Execution detail information |
| > orderId | String | Order ID |
| > tradeId | String | Trade ID |
| > symbol | String | Symbol, using ticker.region format, e.g. AAPL.US |
| > tradeDoneAt | String | Trade time (ISO 8601) |
| > quantity | Number | Trade quantity |
| > price | Number | Trade price |