Get Opening Orders
Description
Query pending orders of given futures name
HTTP Request
- GET /fapi/v1/trade/openOrders
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | Futures 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
| Parameter | Type | Description |
|---|---|---|
| futuresName | String | futures name, e.g. "E-BTC-USDT" |
| orderId | String | Order ID |
| side | String | Order direction |
| type | String | Order type. LIMIT: limit order、MARKET: market order |
| action | String | Direction. OPEN: Open、CLOSE: Close |
| price | String | Order price. price is 0 if type is "MARKET" |
| avgPrice | String | Transaction price |
| origOty | String | Order price or amount of order value |
| executeQty | String | Transaction quantity |
| status | String | Order status |
| timeInForce | String | Order expiration date |
| transactTime | String | Creation 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"
}
]
}