Skip to main content

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​

ParametersTypeRequiredDescription
symbolStringNoSymbol, using ticker.region format, e.g. AAPL.US
startAtNumberNoStart time, timestamp in seconds, e.g. 1650410999. Defaults to 90 days before end time or current time
endAtNumberNoEnd 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​

ParametersTypeDescription
hasMoreBooleanWhether there is more data. Max 1000 orders per query; hasMore is true when results exceed 1000
tradesList<Object>Execution detail information
> orderIdStringOrder ID
> tradeIdStringTrade ID
> symbolStringSymbol, using ticker.region format, e.g. AAPL.US
> tradeDoneAtStringTrade time (ISO 8601)
> quantityNumberTrade quantity
> priceNumberTrade price

How was your Reading Experience with us?

★
★
★
★
â˜