Tiếng Việt

Tạo lệnh

Tạo lệnh

POSThttps://nami.exchange/api/v4/spot/order
Authorization
Body
symbolnullable string

Ký hiệu giao dịch.

pricenullable number (float)

Giá để đặt lệnh.

stopPricenullable number (float)

Giá dừng cho lệnh dừng.

sidenullable string

Phía của lệnh (BUY hoặc SELL).

typenullable string

Loại lệnh (LIMIT, MARKET, v.v.).

quantitynumber (float)

Số lượng tài sản để mua hoặc bán.

Example: 0
quoteOrderQtynumber (float)

Số lượng lệnh trích dẫn.

Example: 0
useQuoteQtyboolean

Có sử dụng số lượng lệnh trích dẫn hay không.

Example: false
signaturestring

Chữ ký là khóa bí mật được mã hóa dưới dạng dữ liệu ASCII. Yêu cầu chứng thực.

timestampstring (date-time)

Thời điểm gửi yêu cầu.

Response

Thành công

Body
statusstring
Example: "ok"
dataobject
Request
const response = await fetch('https://nami.exchange/api/v4/spot/order', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "status": "ok",
  "data": {
    "displayingId": 435372,
    "userId": 18,
    "side": "BUY",
    "type": "LIMIT",
    "price": 62877.99,
    "liquidityStatus": 1,
    "quantity": 0.07474,
    "executedQty": 0,
    "quoteQty": 4699.5009726,
    "executedQuoteQty": 0,
    "liquidityUsdtPrice": 1,
    "liquidityTransferPrice": 62877.99,
    "liquiditySymbol": "BTCUSDT",
    "liquidityOrderId": "11779887",
    "feeMetadata": {
      "assetId": 22,
      "asset": "USDT",
      "value": 4.6995009726,
      "feeRatio": 0.001,
      "executed": 0
    },
    "useQuoteQty": false,
    "symbol": "BTCUSDT",
    "baseAsset": "BTC",
    "baseAssetId": 9,
    "quoteAsset": "USDT",
    "quoteAssetId": 22,
    "status": "NEW",
    "stopPrice": 0
  }
}