Future Depth API Futures Order Book Futures API REST API 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.
Batch Real-Time Depth
Request Parameters
Response Parameters
Code Examples
import requests
url = "https://api.itick.org/future/depths?region=US&codes=NQ,ES"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
###Query URL
Response Result
{
"code": 0,
"msg": null,
"data": {
"NQ": {
"s": "NQ",
"a": [
{
"po": 1,
"p": 22949,
"v": 1,
"o": 1
}
],
"b": [
{
"po": 1,
"p": 22948.25,
"v": 3,
"o": 1
}
]
},
"ES": {
"s": "ES",
"a": [
{
"po": 1,
"v": 0,
"o": 0
}
],
"b": [
{
"po": 1,
"v": 0,
"o": 0
}
]
}
}
}- Batch Real-Time QuoteFutures Market
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.
- Futures MarketBatch Real-Time Kline
Batch obtain complete K-line data for multiple futures contracts, covering China's four major futures exchanges and mainstream international futures markets. Provide standardized time series data, including opening price, highest price, lowest price, closing price, trading volume, and open interest - complete OHLC indicators, supporting multi-period queries from minute lines to monthly lines.