-
Notifications
You must be signed in to change notification settings - Fork 154
K线查询
Leon Oldfritter edited this page Apr 9, 2020
·
1 revision
GET
/api/web/v1/k
params
market // 市场
limit // 最大数限制
period // 哪一条K线
timestamp // 时间戳
返回
{
"head": {
"code": "1000",
"msg": "Success."
},
"body": [
{
"timestamp": "", // 时间戳
"open": "", // 开盘价
"high": "", // 最高价
"low": "", // 最低价
"close": "", // 收盘价
"volume": "", // 交易量
},
// 以下省略....
]
}