Stock Batch Real-time Tick Data API - Latest Global Stock Market Quotes free stock APIs REST API Provide flexible and customizable batch real-time Tick data interface. You can freely create and manage multiple stock watchlists, and the API will only push real-time transaction-by-transaction trades and order book changes for the combinations you subscribe to.

Please select

Batch Real-Time Tick

GET
/stock/ticks

Request Parameters

regionenumRequired
Hong Kong
Market code, supports HK(Hong Kong)、SH(Shanghai)、SZ(Shenzhen)、US(US stocks)、SG(Singapore)、JP(Japan)、TW(Taiwan)、IN(India)、TH(Thailand)、DE(Germany)、MX(Mexico)、MY(Malaysia)、TR(Turkey)、ES(Spain)、NL(Netherlands)、GB(Great Britain)etc.
codesstringRequired
Product codes

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
ldnumber
Latest price
tnumber
Timestamp of the latest transaction
vnumber
Transaction volume

Code Examples

import requests

url = "https://api.itick.io/stock/ticks?region=HK&codes=700,9988"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

Query URL

GET
https://api.itick.io/stock/ticks?region=HK&codes=700,9988

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "700": {
      "s": "700",
      "ld": 567,
      "t": 1754554087000,
      "v": 1134500
    },
    "9988": {
      "s": "9988",
      "ld": 119.2,
      "t": 1754554087000,
      "v": 3931400
    }
  }
}