机器人当前委托
机器人专用接口,查询用户的未完成合约订单。
🔒 需要 IP 白名单授权。
接口信息
- 方法:
GET - 路径:
/fapi/v1/bot/openOrders
响应示例
{
"code": 0,
"message": "success",
"data": [
{
"id": "1234567890123456789",
"client_order_id": "bot-order-001",
"symbol": "BTC_USDT",
"side": 1,
"position_side": 1,
"position_action": 1,
"type": 1,
"price": "68500",
"qty": "0.1",
"leverage": 10,
"margin_mode": 1,
"time_in_force": 1,
"status": 1,
"filled_qty": "0",
"filled_quote": "0",
"created_at": 1711929600000
}
]
}