Future Quote API Futures Real-Time Prices Futures API REST API Batch obtain real-time quote data for multiple futures contracts, covering all types of main contracts and continuous contracts including commodity futures and financial futures. Provide complete market indicators for each contract such as latest price, price change, trading volume, open interest, and bid-ask prices, with millisecond-level updates ensuring data timeliness.
Please select
Batch Real-Time Quote
GET
/future/quotes
Request Parameters
regionenumRequired
US
Market code
codesstringRequired
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/future/quotes?region=US&codes=NQ,ES"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
###Query URL
GET
https://api.itick.org/future/quotes?region=US&codes=NQ,ES
Response Result
{
"code": 0,
"msg": null,
"data": {
"NQ": {
"s": "NQ",
"ld": 25213.5,
"o": 25674,
"p": 25674,
"h": 25703.75,
"l": 25118,
"t": 1765576802621,
"v": 736750,
"tu": 18670551589,
"ch": -500,
"chp": -1.94,
"ts": 0
},
"ES": {
"s": "ES",
"ld": 6830.75,
"o": 6904.25,
"p": 6904.25,
"h": 6913,
"l": 6805,
"t": 1765579830530,
"v": 2464264,
"tu": 16874645961.25,
"ch": -76.5,
"chp": -1.11,
"ts": 0
}
}
}- Batch Real-Time TickFutures Market
Batch obtain real-time Tick data for multiple futures contracts, covering China's four major futures exchanges and mainstream international futures markets, including commodity futures, financial futures and all types of contracts. Provide millisecond-accurate transaction-by-transaction records, including transaction prices, trading volumes, buy/sell directions and timestamps, along with real-time order book snapshots.
- Futures MarketBatch Real-Time Depth
Batch obtain real-time order book depth data for multiple futures contracts. Provide complete buy-sell order book lists, including multi-level prices and order volumes, with millisecond-level real-time updates.