Skip to main content
GET
/
v1
/
market
/
intraday
Intraday Data
curl --request GET \
  --url https://api.tickdb.ai/v1/market/intraday \
  --header 'X-API-Key: <api-key>'
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "symbol": "700.HK",
      "lines": [
        {
          "timestamp": 1773192600000,
          "price": "568",
          "volume": 7294905,
          "turnover": "4181560679.96",
          "avg_price": "573.216605"
        }
      ]
    }
  ]
}

Notes

  • Data covers from market open to current time of the trading day
  • Returns empty array during non-trading hours

Supported Markets

US Stocks, HK Stocks, A-Shares Examples:
  • US Stocks: AAPL.US, TSLA.US, MSFT.US
  • HK Stocks: 700.HK, 9988.HK, 3690.HK
  • A-Shares: 000001.SH, 000001.SZ

Request Parameters

ParameterRequiredDescription
symbolsYesStock symbol codes, comma-separated, max 50

Response Fields

Field NameDescription
symbolTrading Symbol
linesIntraday Data
└─ timestampStart Time of Current Minute
└─ priceClosing Price of Current Minute
└─ volumeTrading Volume
└─ turnoverTrading Turnover
└─ avg_priceAverage Price

Authorizations

X-API-Key
string
header
required

Query Parameters

symbols
string
default:700.HK,9988.HK
required

Comma-separated stock symbols (max 50)

Example:

"700.HK,9988.HK"

Response

200 - application/json

Successful response

code
integer
Example:

0

message
string
Example:

"success"

data
object[]