Stock Real-time Quotes API - Latest Global Stock Market Quotes free stock APIs REST API Provide real-time quote data for major global stocks, covering thousands of individual stocks in global markets including A-shares, US stocks, and Hong Kong stocks. Include complete market indicators such as latest price, price change, trading volume, turnover rate, and P/E ratio, with real-time data updates.

Please select

Real-Time Quote

GET
/stock/quote

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.
codestringRequired
Product code

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
ldnumber
Latest price
onumber
Opening price
pnumber
Previous Closing Price
hnumber
Highest price
lnumber
Lowest price
tnumber
Timestamp of the latest trade
vnumber
Trading volume
tunumber
Trading amount
tsnumber
Trading status of the symbol
chnumber
Change
chpnumber
Change %

Code Examples

import requests

url = "https://api.itick.io/stock/quote?region=HK&code=700"

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

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

print(response.text)

Query URL

GET
https://api.itick.io/stock/quote?region=HK&code=700

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "700",
    "ld": 616,
    "o": 608,
    "p": 608,
    "h": 616,
    "l": 601.5,
    "t": 1765526889000,
    "v": 17825495,
    "tu": 10871536434.36,
    "ts": 0,
    "ch": 8,
    "chp": 1.32
  }
}