Query Current Orders
Address: /openApi/contract/currentList
Receive Parameters
required
Submission method: get
Submission Parameters
Parameter Name | Required | Type | Example | Description |
---|---|---|---|---|
symbol | No | string | Trading pair (mandatory for current trading pair, do not pass for all trading pairs) | |
from | No | int | 122 | Query start order_id |
direct | No | string | prev | Query direction (default is prev), prev is backward, time (or ID) in descending order; next is forward, time (or ID) in ascending order. (Example of a series: 1, 2, 3, 4, 5. If from=4, prev includes 3, 2, 1; next only includes 5) |
limit | No | int | 20 | The number of result sets returned per page, default is 20, maximum is 100 (refer to the description in the pagination section for details) |
is_full | No | int | 1 | 1 Hedge mode 2 Cross margin |
Return Parameters
Parameter Name | Required | Mandatory | Example | Description |
---|---|---|---|---|
errno | Yes | int | 0 | return status code |
errmsg | Yes | string | Success | Return message |
result | Yes | object | See example | Return data |
result Parameters
Parameter Name | Required | Type | Example | Description |
---|---|---|---|---|
order_id | Yes | string | BG5000181583375122413SZXEIX | Order Number |
ctime | Yes | int | 1576746253 | Order Time |
symbol | Yes | string | ETH-USDT | Trading pair |
price | Yes | string | 1 | Order Price |
price_avg | Yes | string | 0 | Average transaction price |
lever_rate | Yes | int | 10 | Leverage Multiplication |
amount | Yes | string | 10 | Order quantity |
deal_amount | Yes | string | 0 | Transaction Volume |
type | Yes | string | buy-limit | Order Type |
status | Yes | int | 1 | Order status (1=Pending,2=Partially Filled,3=Filled,4=Cancelling,5=Partially Cancelled,6=Cancelled) |
contract_type | Yes | string | open | Open/Close identifier (open for opening a position, close for closing a position) |
trigger_price | Yes | string | 1 | Trigger Price |
stop_profit_price | Yes | string | 15 | Take Profit Price |
stop_loss_price | Yes | string | 10 | Stop loss price |
Example Response
JSON
{
"errno": 0,
"errmsg": "success",
"result": [
{
"order_id": "BG5000181583375122413SZXEIX", //Order ID
"ctime": 1576746253, // Order time
"symbol": "ETH-USDT", //Trading Pair
"price": "1", //Order Price
"price_avg": "0", //Average transaction price
"lever_rate": 10, //Leverage ratio
"amount": "10", // Order Quantity
"deal_amount": "0", //Transaction volume
"type": "buy-limit", // Order type
"status": 1, //Status:1=Open orders,2=Partial transactions,3=Completed transactions,4=Cancellation in progress,5=Partial cancellation,6=Cancellation completed
"contract_type": "open", //open open position close close position
"trigger_price": "1", //Trigger Price
"stop_profit_price": "15", //Stop profit price
"stop_loss_price": "10" //Stop loss price
}
]
}