Futures Batch Real-time Tick Data API Futures API REST API 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.

Please select

Batch Real-Time Tick

GET
/future/ticks

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
tnumber
Timestamp of the latest trade
vnumber
Transaction volume

Code Examples

import requests

url = "https://api.itick.io/future/ticks?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.io/future/ticks?region=US&codes=NQ,ES

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "NQ": {
      "s": "NQ",
      "ld": 22948.5,
      "t": 1754062000728,
      "v": 17
    },
    "ES": {
      "s": "ES",
      "ld": 65.04,
      "t": 1754689608000,
      "v": 181428
    }
  }
}