Get Execution Details of Trade Order
Request
GET https://custody-example-url/custody/v1/api/projects/{b_id}/integrated/trade/orders/{order_no}/tran-records
Parameters
Field |
Type |
Description |
b_id |
String |
Business line ID |
order_no |
String |
Order ID |
Response
Field |
Type |
Description |
order_no |
String |
Order ID |
trading_pair |
String |
Trading pair |
filled_qty |
Integer |
Transaction base amount |
filled_cash |
Integer |
Transaction quote amount |
filled_price |
Integer |
Transaction price |
fee |
Integer |
Service fee |
fee_ccy |
String |
Service fee currency |
trade_type |
String |
Order Type (LIMIT-limit order; TOKEN-market order) |
side |
String |
Trade directions (BUY-buy; SELL-sell) |
trade_id |
String |
Trade ID |
status |
String |
Status (PROCESSING-processing; PENDING-pending settlement;COMPLETE-complete; CANCELING-cancel;CANCEL_PART-partial success) |
complete_time |
String |
Complete time |
Response Example
{
"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
}