獲取私有資金費用歷史
{
"dataList": [
{
"id": 36275152660006, //id
"symbol": "XBTUSDM", //合約symbol
"timePoint": 1557918000000, //時間點(毫秒)
"fundingRate": 0.000013, //資金費率
"markPrice": 8058.27, //標記價格
"positionQty": 10, //結算時的倉位數
"positionCost": -0.001241, //結算時的倉位價值
"funding": -0.00000464, //結算的資金費用,正數表示收入;負數表示支出
"settleCurrency": "XBT" //結算幣種
},
{
"id": 36275152660004,
"symbol": "XBTUSDM",
"timePoint": 1557914400000,
"fundingRate": 0.00375,
"markPrice": 8079.65,
"positionQty": 10,
"positionCost": -0.0012377,
"funding": -0.00000465,
"settleCurrency": "XBT"
},
{
"id": 36275152660002,
"symbol": "XBTUSDM",
"timePoint": 1557910800000,
"fundingRate": 0.00375,
"markPrice": 7889.03,
"positionQty": 10,
"positionCost": -0.0012676,
"funding": -0.00000476,
"settleCurrency": "XBT"
}
],
"hasMore": true //是否還有下一頁
}
獲取資金費用歷史
HTTP請求
GET /api/v1/funding-history
API權限
此接口需要通用權限
請求URL
此接口支持合約URL
頻率限制
合约类权重
:5
參數
參數 | 數據類型 | 是否必須 | 含義 |
---|---|---|---|
symbol | String | 是 | 合約symbol |
startAt | long | 否 | 開始時間(毫秒) |
endAt | long | 否 | 截止時間(毫秒) |
reverse | boolean | 否 | 是否逆序查詢, true 或者 false,默認爲true |
offset | long | 否 | 起始偏移量,一般使用上個請求最後一條返回結果的唯一屬性,默認返回第一頁 |
forward | boolean | 否 | 是否前向查詢,true或者false,默認爲true |
maxCount | int | 否 | 最大記錄條數,默認爲10 |
**注意:**由於數據變化的很快,如果只選擇offset,而沒有選擇startAt和endAt,可能會導致數據不准或數據重複,建議按startAt和endAt來分頁
返回值
字段 | 含義 |
---|---|
id | id |
symbol | 合約symbol |
timePoint | 時間點(毫秒) |
fundingRate | 資金費率 |
markPrice | 標記價格 |
positionQty | 結算時的倉位數 |
positionCost | 結算時的倉位價值 |
funding | 結算的資金費用,正數表示收入;負數表示支出 |
settleCurrency | 結算幣種 |
hasMore | 是否還有下一頁 |