Get real-time K-line data for the current time period that is being formed and updated.
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.
/v1/market/kline| Parameter | Required | Description |
|---|---|---|
| symbols | Yes | Trading symbol codes, comma-separated, e.g., AAPL.US,00700.HK |
| interval | Yes | K-line period, options: 1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 1d, 1w, 1M |
| Field | Description |
|---|---|
| symbol | Trading Symbol |
| interval | K-line period |
| klines | K-line data array |
| └─ time | K-line timestamp (milliseconds) |
| └─ open | Opening price |
| └─ high | Highest price |
| └─ low | Lowest price |
| └─ close | Closing price |
| └─ volume | Trading volume |
| └─ quote_volume | Trading amount |
Comma-separated symbols (e.g., AAPL.US,00700.HK)
"AAPL.US,00700.HK"
K-line interval
1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 1d, 1w, 1M "3m"
Successful response
0
"success"
[
{
"symbol": "AAPL.US",
"interval": "3m",
"klines": [
{
"time": 1773259020000,
"open": "260.86",
"high": "261.05",
"low": "260.7",
"close": "260.81",
"volume": "963419",
"quote_volume": "251311057.55"
}
]
},
{
"symbol": "00700.HK",
"interval": "3m",
"klines": [
{
"time": 1773293400000,
"open": "542.5",
"high": "544.5",
"low": "542",
"close": "544.5",
"volume": "80300",
"quote_volume": "43656433.33"
}
]
}
]