- 错误码
- WebHook
- 币种和交易对
- 未平仓合约
- 爆仓数据
- 市价单统计指标
- 资金流
- 资金费率
- 多空比
- 净多头和净空头
- 订单本
- 订单流
- RSI选币器
- 大额订单
- 热门排行
- K线
- 指标数据
- ETF
- 新闻快讯
- hyperLiquid鲸鱼
交易对持仓历史(Plan1)
GET
https://open-api.coinank.com/api/openInterest/symbol/Chart
请求参数
Query 参数
symbol
string
交易所
示例值:
Binance
exchange
string
交易对
示例值:
BTCUSDT
interval
string
必需
示例值:
1m
endTime
number
必需
示例值:
1730174208186
size
string
可选
示例值:
500
Header 参数
apikey
string
必需
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open-api.coinank.com/api/openInterest/symbol/Chart?symbol=Binance&exchange=BTCUSDT&interval=1m&endTime=1730174208186&size=500' \
--header 'apikey;'
返回响应
🟢200OK
application/json
Body
success
boolean
必需
code
string
必需
data
array [object {3}]
必需
ts
integer
时间戳
coinCount
number
持仓数据
coinValue
number
持仓金额(USD)
示例
{
"success": true,
"code": "1",
"data": [
{
"ts": 1725948000000,
"volume": 0,
"coinCount": 86935.155,
"coinValue": 4945297598.66
},
{
"ts": 1725951600000,
"volume": 0,
"coinCount": 86917.811,
"coinValue": 4936740445.62
},
{
"ts": 1725955200000,
"volume": 0,
"coinCount": 87216.816,
"coinValue": 4986368526.03
},
{
"ts": 1725958800000,
"volume": 0,
"coinCount": 87343.364,
"coinValue": 4980729129.09
},
{
"ts": 1725962400000,
"volume": 0,
"coinCount": 87451.509,
"coinValue": 4990918834.69
},
{
"ts": 1725966000000,
"volume": 0,
"coinCount": 87157.282,
"coinValue": 4981831797.57
},
{
"ts": 1725969600000,
"volume": 0,
"coinCount": 86948.442,
"coinValue": 4972590092.82
},
{
"ts": 1725973200000,
"volume": 0,
"coinCount": 86945.24,
"coinValue": 4970511563.89
},
{
"ts": 1725976800000,
"volume": 0,
"coinCount": 87523.516,
"coinValue": 4962758404.23
},
{
"ts": 1725980400000,
"volume": 0,
"coinCount": 86977.184,
"coinValue": 4948793024.36
}
]
}
修改于 2025-03-05 06:08:03