curl --location --request GET '/hs/trend?symbol=sz000002' \
--header 'Authorization: APPCODE {{APPCODE}}'
字段说明
参数名 类型 最大长度 中文名
time Time 32 数据时间
price Integer 10 当前价
avg Integer 10 当前平均价
volume Integer 10 当前成交数
{
"code": 1,
"message": "OK",
"data": [
{
"volume": "1597800",
"avg": "9.29",
"price": "9.29",
"time": "09:30:00"
}, {
"volume": "6796625",
"avg": "9.312",
"price": "9.33",
"time": "09:31:00"
}, {
"volume": "3748100",
"avg": "9.316",
"price": "9.35",
"time": "09:32:00"
}
]
}