獲取溢價指數

  {
    "dataList": [
      {
        "symbol": ".XBTUSDMPI",              //溢價指數symbol
        "granularity": 60000,                //粒度(毫秒)
        "timePoint": 1558000320000,          //時間點(毫秒)
        "value": 0.022585                    //溢價指數值
      },
      {
        "symbol": ".XBTUSDMPI",
        "granularity": 60000,
        "timePoint": 1558000260000,
        "value": 0.022611
      },
      {
        "symbol": ".XBTUSDMPI",
        "granularity": 60000,
        "timePoint": 1558000200000,
        "value": 0.021421
      }
    ],
    "hasMore": true                        //是否還有下一頁
  }

查詢溢價指數

HTTP請求

GET /api/v1/premium/query

請求URL

此接口支持合約URL

頻率限制

公有类权重:3

參數
參數 數據類型 是否必須 含義
symbol String 溢價指數symbol
startAt long 開始時間(毫秒)
endAt long 截止時間(毫秒)
reverse boolean 是否逆序查詢, true 或者 false, 默認爲true
offset long 起始偏移量,一般使用上個請求最後一條返回結果的唯一屬性,默認返回第一頁
forward boolean 是否前向查詢, true或者false, 默認爲true
maxCount int 最大記錄條數, 默認爲10,長度最大不超過100
返回值
字段 含義
symbol 資金費率symbol
granularity 粒度(毫秒)
timePoint 時間點(毫秒)
value 資金費率
hasMore 是否還有下一頁