跳转至

查询当前持仓

地址: /openApi/contract/position

接收参数

需要

提交方式:get

提交参数

参数名 是否必需 类型 示例 说明
symbol string ETH-USDT 交易对 不传即查全部
is_full int 1 1逐仓 2全仓

返回参数

参数名 是否必需 类型 示例 说明
errno int 0 返回状态码
errmsg string 成功 返回信息
result object 见示例 返回数据

result参数

参数名 是否必需 类型 示例 说明
type int 1 1多仓 2空仓
symbol string ETH-USDT 交易对
lever_rate int 10 杠杆倍数
amount string 10 持有数量
profit string 10 已实现盈亏
open_price_avg string 0.3 开仓均价
bood string 6 冻结保证金(USDT)
contract_frozen string 5 委托冻结(张数)
settle_rate string 0.1 当期资金结算费用
equity string 3.4 账户权益(USDT)
avail string 20 可用(USDT)
bond_rate string 1.1 保证金率
liquidation_price string 0.9 强平价
avail_amount string 50 可平数量(张数)
un_profit string 0 未实现盈亏

返回示例

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": [{
        "type": 1, //1多仓 2空仓
        "symbol": "ETH-USDT", //交易对
        "lever_rate": 10, //杠杆倍数
        "amount": "10", //持有数量
        "profit": "10", //已实现盈亏
        "open_price_avg": "0.3", //开仓均价
        "bood": "6", //冻结保证金(usdt)
        "contract_frozen": "5", //委托冻结(张数)
        "settle_rate": "0.1", //当期资金结算费用
        "equity": "3.4", //账户权益(usdt)
        "avail": "20", //可用(usdt)
        "bond_rate": "1.1", //保证金率
        "liquidation_price": "0.9", //强平价
        "avail_amount": "50", //可平数量(张数)
        "un_profit": "0" //未实现盈亏
    }]
}