查詢交割紀錄
查詢反向交割 / USDC交割 / 期權的交割紀錄, 返回結果按照deliveryTime
降序排列
HTTP 請求
GET /v5/asset/delivery-record
請求參數
參數 | 是否必需 | 類型 | 說明 |
---|---|---|---|
category | true | string | 產品類型inverse (反向交割), linear (USDC交割), option linear (USDC交割), option |
symbol | false | string | 合約名稱 |
startTime | false | integer | 開始時間戳 (毫秒)
|
endTime | false | integer | 結束時間 (毫秒) |
expDate | false | string | 過期日. 格式示例: 25MAR22 . 默認: 返回所有日期數據 |
limit | false | integer | 每頁數量限制. [1 , 50 ]. 默認: 20 |
cursor | false | string | 游標,用於翻頁 |
響應參數
參數 | 類型 | 說明 |
---|---|---|
category | string | 產品類型 |
list | array | Object |
> deliveryTime | number | 交割時間戳 (毫秒) |
> symbol | string | 合約名稱 |
> side | string | Buy ,Sell |
> position | string | 交割數量 |
> deliveryPrice | string | 交割價格 |
> strike | string | 行權價 |
> fee | string | 手續費,正數表支出,負數表收取 |
> deliveryRpl | string | 交割已實現盈虧 |
nextPageCursor | string | 游標,用於翻頁 |
請求示例
- HTTP
- Python
- Node.js
GET /v5/asset/delivery-record?expDate=29DEC22&category=option HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1672362112944
X-BAPI-RECV-WINDOW: 5000
from pybit.unified_trading import HTTP
session = HTTP(
testnet=True,
api_key="XXXXX",
api_secret="XXXXX",
)
print(session.get_option_delivery_record(
category="option",
expDate="29DEC22",
))
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.getDeliveryRecord({ category: 'option', expDate: '29DEC22' })
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});
響應示例
{
"retCode": 0,
"retMsg": "OK",
"result": {
"nextPageCursor": "132791%3A0%2C132791%3A0",
"category": "option",
"list": [
{
"symbol": "BTC-29DEC22-16000-P",
"side": "Buy",
"deliveryTime": 1672300800860,
"strike": "16000",
"fee": "0.00000000",
"position": "0.01",
"deliveryPrice": "16541.86369547",
"deliveryRpl": "3.5"
}
]
},
"retExtInfo": {},
"time": 1672362116184
}