獲取一個或多個交易品種的實時市場行情數據。
Documentation Index
Fetch the complete documentation index at: https://docs.tickdb.ai/llms.txt
Use this file to discover all available pages before exploring further.
| 參數名 | 是否必須 | 描述 |
|---|---|---|
| symbols | 是 | 交易產品代碼,多個用逗號分隔,最多50個 |
| 字段 | 說明 |
|---|---|
| symbol | 交易產品 |
| last_price | 最新成交價 |
| volume_24h | 24小時成交量 |
| high_24h | 24小時最高價 |
| low_24h | 24小時最低價 |
| price_change_24h | 24小時價格變化 |
| price_change_percent_24h | 24小時價格變化百分比 |
| timestamp | 數據時間戳(毫秒,UTC) |
Comma-separated symbols (max 50)
"700.HK,AAPL.US"
Successful response
0
"success"
[
{
"symbol": "700.HK",
"last_price": "543",
"volume_24h": "11205874",
"high_24h": "557",
"low_24h": "543",
"price_change_24h": "-9",
"price_change_percent_24h": "-1.63",
"timestamp": 1773292807000
},
{
"symbol": "AAPL.US",
"last_price": "260.81",
"volume_24h": "26218927",
"high_24h": "262.13",
"low_24h": "259.55",
"price_change_24h": "-0.02",
"price_change_percent_24h": "-0.01",
"timestamp": 1773259201000
}
]