Today Executions
This API is used to get today executions.
SDK Links
Request β
| HTTP Method | GET |
| HTTP URL | /v1/trade/execution/today |
Parameters β
Content-Type: application/json; charset=utf-8
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | NO | Stock symbol, use ticker.region format, example: AAPL.US |
| order_id | string | NO | Order ID, example: 701276261045858304 |
Request Example β
Response β
Response Headers β
- Content-Type: application/json
Response Example β
json
{
"code": 0,
"message": "success",
"data": {
"trades": [
{
"order_id": "693664675163312128",
"price": "388",
"quantity": "100",
"symbol": "700.HK",
"trade_done_at": "1648611351",
"trade_id": "693664675163312128-1648611351433741210"
}
]
}
}Response Status β
| Status | Description | Schema |
|---|---|---|
| 200 | Get Today Executions Success | None |
| 400 | The query failed with an error in the request parameter. | None |
Response Schema β
Schemas β
today_executions_rsp β
| Name | Type | Required | Description |
|---|---|---|---|
| trades | object[] | false | Execution Detail |
| β order_id | string | true | Order ID |
| β trade_id | string | true | Execution ID |
| β symbol | string | true | Stock symbol, use ticker.region format, example: AAPL.US |
| β trade_done_at | string | true | Trade done time, formatted as a timestamp (second) |
| β quantity | string | true | Executed quantity |
| β price | string | true | Executed price |