杠杆交易

交易

安全类型: TRADE

交易下方的接口都需要签名和API-key验证

创建杠杆订单

POST https://openapi.xxx.com/sapi/v1/margin/order

限速规则:100次/2s

Headers

Request Body

{
    'symbol': 'LXTUSDT', 
    'orderId': '494736827050147840', 
    'clientOrderId': '157371322565051',
    'transactTime': '1573713225668', 
    'price': '0.005452', 
    'origQty': '110', 
    'executedQty': '0', 
    'status': 'NEW',
    'type': 'LIMIT', 
    'side': 'SELL'
}

杠杆订单查询

GET https://openapi.xxx.com/sapi/v1/margin/order

限速规则: 20次/2s

Query Parameters

Headers

{
    'orderId': '499890200602846976', 
    'clientOrderId': '157432755564968', 
    'symbol': 'BHTUSDT', 
    'price': '0.01', 
    'origQty': '50', 
    'executedQty': '0', 
    'avgPrice': '0', 
    'status': 'NEW', 
    'type': 'LIMIT', 
    'side': 'BUY', 
    'transactTime': '1574327555669'
}

撤销杠杆订单

POST https://openapi.xxx.com/sapi/v1/margin/cancel

限速规则: 100次/2s

Headers

Request Body

{
    'symbol': 'BHTUSDT', 
    'clientOrderId': '0', 
    'orderId': '499890200602846976', 
    'status': 'CANCELED'
}

杠杆当前委托

GET https://openapi.xxx.com/sapi/v1/margin/openOrders

限速规则: 20次/2s

Query Parameters

Headers

[
    {
        'orderId': '499902955766523648', 
        'symbol': 'BHTUSDT', 
        'price': '0.01', 
        'origQty': '50', 
        'executedQty': '0', 
        'avgPrice': '0', 
        'status': 'NEW', 
        'type': 'LIMIT', 
        'side': 'BUY', 
        'time': '1574329076202'
        },...
]

杠杆交易记录

GET https://openapi.xxx.com/sapi/v1/margin/myTrades

限速规则: 20次/2s

Query Parameters

Headers

[
  {
    "symbol": "ETHBTC",
    "id": 28457,
    "bidId": 100234,
    "askId": 100235,
    "price": "4.00000100",
    "qty": "12.00000000",
    "time": 1499865549590,
    "isBuyer": true,
    "isMaker": false
  },...
]

最后更新于