Future Single Tick API Real-Time Futures Transactions iTick Futures API REST API Real-time Tick data stream for all futures contracts, including transaction-by-transaction details and real-time order book snapshots. Data is accurate to the millisecond level and continuously pushed through WebSocket API to ensure low latency. Covers China's four major futures exchanges and mainstream international futures markets.

Please select

Real-Time Tick

GET
/future/tick

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

Code Examples

import requests

url = "https://api.itick.org/future/tick?region=US&code=NQ"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

###Query URL

GET
https://api.itick.org/future/tick?region=US&code=NQ

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "NQ",
    "ld": 22948.5,
    "t": 1754062000728,
    "v": 17
  }
}
  1. Batch Real-Time KlineStock Market

    Batch obtain complete K-line data for multiple stocks, covering thousands of stocks in global markets including A-shares, US stocks, and Hong Kong stocks. Provide standardized time series data, including opening price, highest price, lowest price, closing price, and trading volume OHLCV fields, supporting multi-period queries from minute lines to monthly lines.

  2. Futures MarketReal-Time Quote

    Real-time quote data for all futures contracts, covering China's four major futures exchanges and mainstream international futures markets. Includes complete market indicators such as latest price, price change, trading volume, open interest, and bid-ask prices, with real-time data refresh.