Fund Real-time Quote API Funds API REST API Provides comprehensive real-time quote data for exchange-traded funds, covering mainstream types such as ETFs, LOFs, and money market funds. The data includes latest price, change percentage, trading volume, IOPV (Indicative Optimized Portfolio Value), and order book information, delivered through a stable API interface in real-time.
Please select
Real-Time Quote
GET
/fund/quote
Request Parameters
regionenumRequired
US
Market code
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
Transaction volume
tunumber
Trading amount
tsnumber
Trading status of the symbol
chnumber
Change
chpnumber
Change %
Code Examples
import requests
url = "https://api.itick.org/fund/quote?region=US&code=QQQ"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
###Query URL
GET
https://api.itick.org/fund/quote?region=US&code=QQQ
Response Result
{
"code": 0,
"msg": null,
"data": {
"s": "QQQ",
"ld": 613.7,
"o": 622.08,
"p": 622.08,
"h": 623.54,
"l": 611.36,
"t": 1765573199000,
"v": 71141919,
"tu": 43822640541.4171,
"ch": -11.88,
"chp": -1.9,
"ts": 0
}
}- Real-Time TickFund Market
Provides comprehensive fund data API. For on-exchange funds, it offers real-time tick-level transactions and order book data for ETFs, LOFs and other varieties; for off-exchange funds, it provides accurate intraday real-time NAV estimates (IOPV) and official NAV after market close. Data covers mainstream markets including Chinese funds, US funds, and Hong Kong funds.
- Fund MarketReal-Time Depth
Provides real-time order book depth data for exchange-traded ETFs and LOFs, fully displaying multiple levels of buy/sell prices, order volumes, and real-time changes in the order book. The data is accurate to the millisecond level, helping you analyze market liquidity and identify key support and resistance levels.