Get Order Detail
Description
Get order detail
HTTP Request
- GET /fapi/v1/trade/order
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | futures name, e.g. "E-BTC-USDT" |
| orderId | String | Yes | Order ID |
| clientOrderId | String | No | Customize 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
| 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": "9",
"orderId": "2523269251774120101",
"price": "0",
"origQty": "100",
"avgPrice": "101633.4",
"transactTime": "1736236544000",
"action": "OPEN",
"futuresName": "E-BTC-USDT",
"type": "MARKET",
"timeInForce": "",
"status": "FILLED"
}
}