cURL
curl --request POST \ --url https://futuresopenapi.odyssey.trade/fapi/v1/trigger_order_list \ --header 'Content-Type: application/json' \ --header 'x-ch-apikey: <x-ch-apikey>' \ --header 'x-ch-sign: <x-ch-sign>' \ --header 'x-ch-ts: <x-ch-ts>' \ --data '{ "contract_name": "<string>", "page": 123, "limit": 123 }'
{ "code": "<string>", "msg": "<string>", "data": { "count": 123, "trigOrderList": [ { "id": 123, "triggerOrderId": 123, "contractId": 123, "contractName": "<string>", "marginCoin": "<string>", "multiplier": "<string>", "triggerPrice": "<string>", "price": "<string>", "pricePrecision": 123, "volume": "<string>", "open": "OPEN", "side": "BUY", "status": 0, "expireTime": 123, "ctime": 123, "mtime": 123, "triggerType": 1 } ] } }
Get all trigger orders.
Request signature.
The user's API key.
The current time in milliseconds.
Source: https://exchangeopenapi.gitbook.io/pri-openapi/openapi-doc/futures-trading-api#obtain-the-current-trigger-order
Successful Response
The response is of type object.
object