Get Order Details by orderId
Request via this interface to get a stop order information via the order ID.
HTTP REQUEST
GET /api/v1/stop-order/{orderId}
Example
GET /api/v1/stop-order/5c35c02703aa673ceec2a168
{
"id": "vs8hoo8q2ceshiue003b67c0",
"symbol": "KCS-USDT",
"userId": "60fe4956c43cbc0006562c2c",
"status": "NEW",
"type": "limit",
"side": "buy",
"price": "0.01000000000000000000",
"size": "0.01000000000000000000",
"funds": null,
"stp": null,
"timeInForce": "GTC",
"cancelAfter": -1,
"postOnly": false,
"hidden": false,
"iceberg": false,
"visibleSize": null,
"channel": "API",
"clientOid": "40e0eb9efe6311eb8e58acde48001122",
"remark": null,
"tags": null,
"orderTime": 1629098781127530345,
"domainId": "kucoin",
"tradeSource": "USER",
"tradeType": "TRADE",
"feeCurrency": "USDT",
"takerFeeRate": "0.00200000000000000000",
"makerFeeRate": "0.00200000000000000000",
"createdAt": 1629098781128,
"stop": "loss",
"stopTriggerTime": null,
"stopPrice": "10.00000000000000000000"
}
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Spot weight
:3
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
orderId | String | Yes | Path parameter, Order ID |
RESPONSES
Param | Description |
---|---|
id | Order ID, the ID of an order. |
symbol | Symbol |
userId | User ID |
status | Order status, include NEW, TRIGGERED |
type | Order type |
side | transaction direction,include buy and sell |
price | order price |
size | order quantity |
funds | order funds |
stp | self trade prevention |
timeInForce | time InForce,include GTC,GTT,IOC,FOK |
cancelAfter | cancel orders after n seconds,requires timeInForce to be GTT |
postOnly | postOnly |
hidden | hidden order |
iceberg | Iceberg order |
visibleSize | displayed quantity for iceberg order |
channel | order source |
clientOid | user-entered order unique mark |
remark | Remarks |
tags | tag order source |
orderTime | Time of place a stop order, accurate to nanoseconds |
domainId | domainId, e.g: kucoin |
tradeSource | trade source: USER(Order by user), MARGIN_SYSTEM(Order by margin system) |
tradeType | The type of trading : TRADE(Spot), MARGIN_TRADE (Cross Margin), MARGIN_ISOLATED_TRADE (Isolated Margin). |
feeCurrency | The currency of the fee |
takerFeeRate | Fee Rate of taker |
makerFeeRate | Fee Rate of maker |
createdAt | order creation time |
stop | Stop order type, include loss and entry |
stopTriggerTime | The trigger time of the stop order |
stopPrice | stop price |