取得槓桿帳戶借幣記錄
HTTP 請求
GET /assets/margin/borrow-history
請求參數
參數名 | 是否必須 | 類型 | 說明 |
---|---|---|---|
market | false | string | 市場名稱 |
status | false | string | 借幣狀態 |
page | false | int | 分頁頁數。預設頁數為1。 |
limit | false | int | 分頁數量。預設數量為10。 |
請求回應
參數名 | 類型 | 說明 |
---|---|---|
borrow_id | int | 借幣交易ID |
created_at | int | 借幣申請時間 |
market | string | 市場名稱 |
ccy | string | 幣種名稱 |
daily_interest_rate | string | 每日利率 |
expired_at | int | 到期時間 |
borrow_amount | string | 借幣數量 |
to_repaid_amount | string | 未還數量 |
status | string | 借幣狀態 |
is_auto_renew | bool | 是否自動續期 |
請求範例
GET /assets/margin/borrow-history?market=CETUSDT&status=finish&page=1&limit=10
回應範例
{
"code": 0,
"message": "OK",
"data": [
{
"borrow_id": 72762529,
"created_at": 1691462341020,
"market": "CETUSDT",
"ccy": "CET",
"daily_interest_rate": "0.06237",
"expired_at": 1691480840000,
"borrow_amount": "10000",
"to_repaid_amount": "0",
"is_auto_renew": true,
"status": "PASS"
}
],
"pagination": {
"total": 1,
"has_next": false
}
}