查询交易订单成交明细
请求
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/trade/orders/{order_no}/tran-records
参数
字段 |
类型 |
描述 |
b_id |
String |
业务线ID |
order_no |
String |
订单号 |
响应
字段 |
类型 |
描述 |
order_no |
String |
订单号 |
trading_pair |
String |
交易对 |
filled_qty |
Integer |
成交 base 数量 |
filled_cash |
Integer |
成交 quote 数量 |
filled_price |
Integer |
成交均价 |
fee |
Integer |
手续费 |
fee_ccy |
String |
手续费币种 |
trade_type |
String |
订单类型(LIMIT-限价单,TOKEN-询价单) |
side |
String |
交易方向(BUY-买,SELL-卖) |
trade_id |
String |
成交明细ID |
status |
String |
成交明细状态(PROCESSING-处理中,PENDING-待结算,COMPLETE-完成,CANCELING-已取消,CANCEL_PART-部分成功) |
complete_time |
String |
完成时间 |
响应示例
{
"code": 0,
"message": "",
"data": [
{
"trading_pair": "string",
"side": "string",
"order_no": "string",
"filled_qty": 0,
"trade_id": "string",
"fee": 0,
"fee_ccy": "string",
"trade_type": "string",
"status": "string",
"filled_cash": 0,
"filled_price": 0,
"complete_time": 0
}
],
"successful": true
}