# 杠杆交易

#### 交易 <a href="#jiao-yi" id="jiao-yi"></a>

**安全类型: TRADE**

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

#### 创建杠杆订单 <a href="#chuang-jian-gang-gan-ding-dan" id="chuang-jian-gang-gan-ding-dan"></a>

`POST` `https://openapi.aivora.com/spot/open/sapi/v1/margin/order`

**Demo:** `https://github.com/exchange2021/openapidemo/blob/master/src/main/java/com/margin/NewOrder.java` **限速规则：10次/s**

**Headers**

NameTypeDescription

X-CH-SIGN

string

签名

X-CH-APIKEY

string

您的API-key

X-CH-TS

integer

时间戳

**Request Body**

NameTypeDescription

symbol

string

币对名称 E.g. `BTCUSDT`

volume

number

订单数量

side

string

订单方向, `BUY/SELL`

type

string

订单类型, `LIMIT/MARKET`

price

number

订单价格, 对于`LIMIT`订单必须发送

newClientOrderId

string

客户端订单标识

recvWindow

string

时间窗口

200 发送杠杆订单成功<a class="button secondary">复制</a>

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

#### 杠杆订单查询 <a href="#gang-gan-ding-dan-cha-xun" id="gang-gan-ding-dan-cha-xun"></a>

`GET` `https://openapi.aivora.com/spot/open/sapi/v1/margin/order`

**Demo:** `https://github.com/exchange2021/openapidemo/blob/master/src/main/java/com/margin/QueryOrder.java`\\

**Query Parameters**

NameTypeDescription

orderId

string

订单ID

newClientOrderId

string

客户端订单标识

symbol

string

币对名称E.g. `BTCUSDT`

**Headers**

NameTypeDescription

X-CH-SIGN

string

签名

X-CH-APIKEY

string

您的API-key

X-CH-TS

integer

时间戳

200<a class="button secondary">复制</a>

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

#### 撤销杠杆订单 <a href="#che-xiao-gang-gan-ding-dan" id="che-xiao-gang-gan-ding-dan"></a>

`POST` `https://openapi.aivora.com/spot/open/sapi/v1/margin/cancel`

**Demo:** `https://github.com/exchange2021/openapidemo/blob/master/src/main/java/com/margin/CancelOrder.java`\\

**Headers**

NameTypeDescription

X-CH-SIGN

string

签名

X-CH-APIKEY

string

您的API-key

X-CH-TS

integer

时间戳

**Request Body**

NameTypeDescription

orderId

string

订单id

newClientOrderId

string

客户端订单标识

symbol

string

币对名称E.g. `BTCUSDT`

200<a class="button secondary">复制</a>

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

#### 杠杆当前委托 <a href="#gang-gan-dang-qian-wei-tuo" id="gang-gan-dang-qian-wei-tuo"></a>

`GET` `https://openapi.aivora.com/spot/open/sapi/v1/margin/openOrders`

**Demo:** `https://github.com/exchange2021/openapidemo/blob/master/src/main/java/com/margin/CurrentOpenOrders.java`\\

**Query Parameters**

NameTypeDescription

symbol

string

币对名称 E.g. `BTCUSDT`

limit

integer

默认100; 最大1000

**Headers**

NameTypeDescription

X-CH-SIGN

string

签名

X-CH-APIKEY

string

您的API-key

X-CH-TS

integer

时间戳

200<a class="button secondary">复制</a>

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

#### 杠杆交易记录 <a href="#gang-gan-jiao-yi-ji-lu" id="gang-gan-jiao-yi-ji-lu"></a>

`GET` `https://openapi.aivora.com/spot/open/sapi/v1/margin/myTrades`

**Demo:** `https://github.com/exchange2021/openapidemo/blob/master/src/main/java/com/margin/Trades.java`\\

**Query Parameters**

NameTypeDescription

symbol

string

币对名称 E.g. `BTCUSDT`

limit

integer

默认100; 最大1000

fromId

integer

从这个tradeId开始检索

**Headers**

NameTypeDescription

X-CH-SIGN

string

签名

X-CH-APIKEY

string

您的API-key

X-CH-TS

integer

时间戳

200<a class="button secondary">复制</a>

```
[
  {
    "symbol": "ETHBTC",
    "id": 100211,
    "bidId": 150695552109032492,
    "askId": 150695552109032493,
    "price": "4.00000100",
    "qty": "12.00000000",
    "time": 1499865549590,
    "isBuyer": true,
    "isMaker": false,
    "feeCoin": "ETH",
    "fee":"0.001"
  },...
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kaisensei34.gitbook.io/aivora-docs/gang-gan-jiao-yi.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
