訂單詳情
該接口用於訂單詳情查詢。
SDK Links
Request
| HTTP Method | GET |
| HTTP URL | /v1/trade/order |
Parameters
Content-Type: application/json; charset=utf-8
| Name | Type | Required | Description |
|---|---|---|---|
| order_id | string | YES | 訂單 ID,用於指定訂單 ID 查詢,例如:701276261045858304 |
| is_attached | bool | NO | order_id 是否為附加單 |
Request Example
Response
Response Headers
- Content-Type: application/json
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"order_id": "828940451093708800",
"status": "FilledStatus",
"stock_name": "蘋果",
"quantity": "10",
"executed_quantity": "10",
"price": "200.000",
"executed_price": "164.660",
"submitted_at": "1680863604",
"side": "Buy",
"symbol": "AAPL.US",
"order_type": "LO",
"last_done": "164.660",
"trigger_price": "0.0000",
"msg": "",
"tag": "Normal",
"time_in_force": "Day",
"expire_date": "2023-04-10",
"updated_at": "1681113000",
"trigger_at": "0",
"trailing_amount": "",
"trailing_percent": "",
"limit_offset": "",
"limit_depth_level": 0,
"monitor_price": "",
"trigger_count": 1,
"trigger_status": "NOT_USED",
"outside_rth": "ANY_TIME",
"currency": "USD",
"remark": "1680863603.927165",
"free_status": "None",
"free_amount": "",
"free_currency": "",
"deductions_status": "NONE",
"deductions_amount": "",
"deductions_currency": "",
"platform_deducted_status": "NONE",
"platform_deducted_amount": "",
"platform_deducted_currency": "",
"history": [
{
"price": "164.6600",
"quantity": "10",
"status": "FilledStatus",
"msg": "Execution of 10",
"time": "1681113000"
},
{
"price": "200.0000",
"quantity": "10",
"status": "NewStatus",
"msg": "",
"time": "1681113000"
}
],
"charge_detail": {
"items": [
{
"code": "BROKER_FEES",
"name": "收費明細",
"fees": []
},
{
"code": "THIRD_FEES",
"name": "第三方收費明細",
"fees": []
}
],
"total_amount": "0",
"currency": "USD"
},
"attached_orders": [
{
"order_id": "706388312699592705",
"attached_type_display": 2,
"trigger_price": "10.500",
"quantity": "200",
"executed_qty": "0",
"status": "NewStatus",
"updated_at": "1651644898",
"withdrawn": false,
"gtd": "",
"time_in_force": "Day",
"counter_id": "",
"trigger_status": 0,
"executed_amount": "0",
"tag": 0,
"submitted_at": "1651644897",
"executed_price": "0.000",
"force_only_rth": "RTH_ONLY",
"reviewed": false,
"activate_order_type": "MIT",
"activate_rth": "RTH_ONLY",
"submit_price": ""
}
],
"multi_leg": {
"strategy": "2",
"strategy_name": "跨價期權",
"multileg_id": "Spread_QQQ20260731C764/767",
"code": "QQQ 260731 764/767 跨價期權",
"legs": [
{
"symbol": "QQQ260731C764000.US",
"side": "Buy",
"position": "LONG",
"ratio_quantity": "1",
"strike_price": "764",
"expire_date": "20260731",
"contract_direction": "C",
"contract_size": ""
},
{
"symbol": "QQQ260731C767000.US",
"side": "Sell",
"position": "SHORT",
"ratio_quantity": "1",
"strike_price": "767",
"expire_date": "20260731",
"contract_direction": "C",
"contract_size": ""
}
]
}
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 訂單詳情查詢成功 | order_detail_rsp |
| 400 | 查詢失敗,請求參數錯誤。 | None |
Schemas
order_detail_rsp
訂單信息
| Name | Type | Required | Description |
|---|---|---|---|
| order_id | string | true | 訂單 ID |
| status | string | true | 訂單狀態 |
| stock_name | string | true | 股票名稱 |
| quantity | string | true | 下單數量 |
| executed_quantity | string | true | 成交數量。 當訂單未成交時為 0 |
| price | string | true | 下單價格。 當市價條件單未觸發時為空字符串 |
| executed_price | string | true | 成交價。 當訂單未成交時為 0 |
| submitted_at | string | true | 下單時間 |
| side | string | true | 買賣方向 可選值: Buy - 買入Sell - 賣出 |
| symbol | string | true | 股票代碼,使用 ticker.region 格式,例如:AAPL.US |
| order_type | string | true | 訂單類型 |
| last_done | string | true | 最近成交價格。 當訂單未成交時為空字符串 |
| trigger_price | string | true | LIT / MIT 訂單觸發價格。當訂單不是 LIT / MIT 訂單為空字符串 |
| msg | string | true | 拒絕信息或備註,默認為空字符串。 |
| tag | string | true | 訂單標記 可選值: Normal - 普通訂單Gtc - 長期單Grey - 暗盤單 |
| time_in_force | string | true | 訂單有效期類型 可選值: Day - 當日有效GTC - 撤單前有效GTD - 到期前有效 |
| expire_date | string | true | 長期單過期時間,格式為 YYYY-MM-DD, 例如:`2022-12-05。不是長期單時,默認為空字符串。 |
| updated_at | string | true | 最近更新時間,格式為時間戳 (秒),默認為 0。 |
| trigger_at | string | true | 條件單觸發時間,格式為時間戳 (秒),默認為 0。 |
| trailing_amount | string | true | TSLPAMT 訂單跟蹤金額。當訂單不是 TSLPAMT 訂單時為空字符串。 |
| trailing_percent | string | true | TSLPPCT 訂單跟蹤漲跌幅。當訂單不是 TSLPPCT 訂單時為空字符串。 |
| limit_offset | string | true | TSLPAMT / TSLPPCT 訂單指定價差。當訂單不是 TSLPAMT / TSLPPCT 訂單時為空字符串。 |
| trigger_status | string | true | 條件單觸發狀態 當訂單不是條件單或條件單未觸發時,觸發狀態為 NOT_USED 可選值: NOT_USED - 未激活DEACTIVE - 已失效ACTIVE - 已激活RELEASED - 已觸發 |
| currency | string | true | 結算貨幣 |
| outside_rth | string | true | 是否允許盤前盤後 當訂單不是美股時,默認為 UnknownOutsideRth 可選值: RTH_ONLY - 不允許盤前盤後ANY_TIME - 允許盤前盤後OVERNIGHT - 夜盤 |
| remark | string | true | 備註 |
| free_status | string | true | 免傭狀態,默認為 None 可選值: None - 無Calculated - 免傭額待計算Pending - 待免傭Ready - 已免傭 |
| free_amount | string | true | 免佣金額,默認為空字符串 |
| free_currency | string | true | 免傭貨幣,默認為空字符串 |
| deductions_status | string | true | 抵扣狀態/返現狀態,默認為 NONE 可選值: NONE - 待結算 NO_DATA - 已結算無數據PENDING - 已結算待發放DONE - 已結算已發放 |
| deductions_amount | string | true | 抵扣金額,默認為空字符串 |
| deductions_currency | string | true | 抵扣貨幣,默認為空字符串 |
| platform_deducted_status | string | true | 平臺費抵扣狀態/返現狀態,默認為 NONE 可選值: NONE - 待結算 NO_DATA - 已結算無數據PENDING - 已結算待發放DONE - 已結算已發放 |
| platform_deducted_amount | string | true | 平臺費抵扣金額,默認為空字符串 |
| platform_deducted_currency | string | true | 平臺費抵扣貨幣,默認為空字符串 |
| history | object[] | true | 訂單歷史明細 |
| ∟ price | string | true | 成交展示成交價格,過期、撤單、拒絕等狀態展示提交價格 |
| ∟ quantity | string | true | 成交展示成交數量,過期、撤單、拒絕等狀態展示剩餘數量 |
| ∟ status | string | true | 訂單狀態 |
| ∟ msg | string | true | 成交或錯誤信息 |
| ∟ time | string | true | 發生時間 |
| charge_detail | object | true | 訂單費用 |
| ∟ total_amount | string | true | 全部費用 |
| ∟ currency | string | true | 結算貨幣 |
| ∟ items | object[] | true | 訂單費用明細 |
| ∟∟ code | string | true | 收費類別代碼 可選值: UNKNOWNBROKER_FEESTHIRD_FEES |
| ∟∟ name | string | true | 收費類別名稱 |
| ∟∟ fees | object[] | true | 收費明細 |
| ∟∟∟ code | string | true | 收費代碼 |
| ∟∟∟ name | string | true | 收費名稱 |
| ∟∟∟ amount | string | true | 單項收費金額 |
| ∟∟∟ currency | string | true | 收費貨幣 |
| ∟ limit_depth_level | int32 | true | 指定買賣檔位 |
| ∟ monitor_price | string | true | 監控價格 |
| ∟ trigger_count | int32 | true | 觸發次數 |
| ∟ attached_orders | object[] | false | 附加訂單詳情列表 |
| ∟∟ order_id | string | true | 附加訂單 ID |
| ∟∟ attached_type_display | int32 | true | 附加訂單類型。可選值: 1 - 止盈 2 - 止損 |
| ∟∟ trigger_price | string | true | 觸發價格 |
| ∟∟ quantity | string | true | 下單數量 |
| ∟∟ executed_qty | string | true | 成交數量 |
| ∟∟ status | string | true | 訂單狀態 |
| ∟∟ updated_at | string | true | 最近更新時間,格式為時間戳 (秒) |
| ∟∟ withdrawn | boolean | true | 是否已撤銷 |
| ∟∟ gtd | string | true | GTD 到期日期,格式為 YYYY-MM-DD |
| ∟∟ time_in_force | string | true | 訂單有效期類型 可選值: Day - 當日有效GTC - 撤單前有效GTD - 到期前有效 |
| ∟∟ counter_id | string | true | 對應單 ID |
| ∟∟ trigger_status | int32 | true | 附加單激活後的條件單觸發狀態。0 - 未激活 1 - 監控中 2 - 已撤單 4 - 已觸發 |
| ∟∟ executed_amount | string | true | 成交金額 |
| ∟∟ tag | int32 | true | 訂單標記 |
| ∟∟ submitted_at | string | true | 下單時間,格式為時間戳 (秒) |
| ∟∟ executed_price | string | true | 成交價格 |
| ∟∟ force_only_rth | string | true | 是否僅正常交易時段執行。 |
| ∟∟ reviewed | boolean | true | 是否已審核 |
| ∟∟ activate_order_type | string | true | 觸發後提交的訂單類型,例如 LIT(限價單)或 MIT(市價單) |
| ∟∟ activate_rth | string | true | 觸發後提交訂單是否允許盤前盤後。 |
| ∟∟ submit_price | string | true | 委託價格 |
| multi_leg | object | false | 多腿策略信息,僅多腿期權組合訂單返回,非組合訂單不返回。 |
| ∟ strategy | string | false | 多腿策略 可選值: 0 - CoveredCall(股票擔保)1 - CoveredPut(股票擔保)2 - VerticalCallSpread(跨價期權)3 - VerticalPutSpread(跨價期權)4 - Collar(領式策略)5 - Straddle(馬鞍式策略)6 - Strangle(勒束式策略) |
| ∟ strategy_name | string | false | 策略名稱 |
| ∟ multileg_id | string | false | 多腿組合 ID |
| ∟ code | string | false | 多腿組合代碼 |
| ∟ legs | object[] | false | 組合訂單的各腿 |
| ∟∟ symbol | string | false | 期權 symbol,使用 ticker.region 格式,例如:QQQ260731C764000.US |
| ∟∟ side | string | false | 買賣方向 可選值: BuySell |
| ∟∟ position | string | false | 持倉方向 可選值: LONGSHORT |
| ∟∟ ratio_quantity | string | false | 該腿比例數量 |
| ∟∟ strike_price | string | false | 行權價 |
| ∟∟ expire_date | string | false | 期權到期日,格式:YYYYMMDD |
| ∟∟ contract_direction | string | false | 合約類型 可選值: C - 看漲(Call)P - 看跌(Put) |
| ∟∟ contract_size | string | false | 合約乘數 |