GET
/
fapi
/
v1
/
order
curl --request GET \
  --url https://futuresopenapi.odyssey.trade/fapi/v1/order \
  --header 'x-ch-apikey: <x-ch-apikey>' \
  --header 'x-ch-sign: <x-ch-sign>' \
  --header 'x-ch-ts: <x-ch-ts>'
{
  "orderId": 123,
  "contractName": "<string>",
  "transactTime": 123,
  "price": "<string>",
  "origQty": "<string>",
  "executedQty": "<string>",
  "avgPrice": "<string>",
  "type": "LIMIT",
  "side": "BUY",
  "status": "INIT",
  "timeInForce": "<string>"
}

Headers

x-ch-sign
string
required

Request signature.

x-ch-apikey
string
required

The user's API key.

x-ch-ts
string
required

The current time in milliseconds.

Query Parameters

orderId
string
required

Order ID.

contractName
string
required

The uppercase contract name, e.g., E-BTC-USDT.

clientOrderId
string | null
required

Client unique identifier, default is 0

Response

200
application/json

Successful Response

An object that contains information about the order.