Skip to content

Get Order Detail

Description

Get order detail

HTTP Request

  • GET /fapi/v1/trade/order

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesfutures name, e.g. "E-BTC-USDT"
orderIdStringYesOrder ID
clientOrderIdStringNoCustomize order ID

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/trade/order?futuresName=E-BTC-USDT&orderId=2523268530219617381' \
	-H "X-CH-TS:1736156253259" \
	-H "X-CH-SIGN:*" \
	-H "X-CH-APIKEY:********" \
	-H "Content-Type: application/json"

Response Parameters

ParameterTypeDescription
futuresNameStringFutures name, e.g. "E-BTC-USDT"
orderIdStringOrder ID
sideStringOrder direction
typeStringOrder type. LIMIT: limit order、MARKET: market order
actionStringDirection. OPEN: Open、CLOSE: Close
priceStringOrder price. price is 0 if type is "MARKET"
avgPriceStringTransaction price
origOtyStringOrder price or amount of order value
executeQtyStringTransaction quantity
statusStringOrder status
timeInForceStringOrder expiration date
transactTimeStringCreation time, ms

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": {
	    "side": "BUY",
    	"executedQty": "9",
    	"orderId": "2523269251774120101",
    	"price": "0",
   		"origQty": "100",
    	"avgPrice": "101633.4",
    	"transactTime": "1736236544000",
    	"action": "OPEN",
    	"futuresName": "E-BTC-USDT",
    	"type": "MARKET",
    	"timeInForce": "",
    	"status": "FILLED"
	}
}