Skip to content

Get Opening Orders

Description

Query pending orders of given futures name

HTTP Request

  • GET /fapi/v1/trade/openOrders

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesFutures name, e.g. "E-BTC-USDT"

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/trade/openOrders?futuresName=E-BTC-USDT' \
	-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": "0",
            "orderId": "2563313671416306065",
            "price": "3000",
            "origQty": "100",
            "avgPrice": "0",
            "transactTime": "1736929814000",
            "action": "OPEN",
            "futuresName": "E-ETH-USDT",
            "type": "LIMIT",
            "timeInForce": "",
            "status": "INIT"
        }
    ]
}