Batch Stock Quotes API Multi-Stock Real-Time Prices free stock APIs REST API Batch obtain real-time quote data for multiple stocks, covering multiple global major markets including A-shares, US stocks, and Hong Kong stocks. Provide complete market indicators for each stock such as latest price, price change, trading volume, turnover, and turnover rate, with millisecond-level latency ensuring data timeliness.
Please select
Batch Real-Time Quote
GET
/stock/quotes
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
onumber
Opening price
pnumber
Previous Closing Price
hnumber
Highest price
lnumber
Lowest price
tnumber
Timestamp of the latest trade
vnumber
Trading volume
tunumber
Turnover
tsnumber
Trading Status 0: Normal Trading, 1: Trading Halt, 2: Delisted, 3: Circuit Breaker
chnumber
Change
chpnumber
Change %
Code Examples
import requests
url = "https://api.itick.org/stock/quotes?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.org/stock/quotes?region=HK&codes=700,9988
Response Result
{
"code": 0,
"msg": null,
"data": {
"700": {
"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
},
"9988": {
"s": "9988",
"ld": 154.1,
"o": 152.7,
"p": 152.7,
"h": 154.1,
"l": 150.8,
"t": 1765526889000,
"v": 88532981,
"tu": 13539596437.06,
"ts": 0,
"ch": 1.4,
"chp": 0.92
}
}
}- Batch Real-Time TickStock Market
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.
- Stock MarketBatch Real-Time Depth
Batch obtain real-time order book depth data for multiple stocks. Provide complete buy-sell order book lists, including multi-level prices and order volumes, with millisecond-level real-time updates. Provide professional batch data solutions for your algorithmic trading, market maker systems, and block trading decisions.