Batch Crypto Ticks API Multi-Pair Real-Time Trades crypto market data API cryptocurrency ticker API REST API Offers batch and historical tick data download for the entire cryptocurrency market. Batch retrieval by time range via RESTful API, providing millisecond-level precision complete order book change logs, covering thousands of trading pairs including Bitcoin (BTC) and Ethereum (ETH). Data includes tick-by-tick trades and order book snapshots.

Please select

Batch Real-Time Tick

GET
/crypto/ticks

Request Parameters

regionenumRequired
BA
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
tunumber
Trading amount
tsnumber
Trading status of the symbol

Code Examples

import requests

url = "https://api.itick.org/crypto/ticks?region=BA&codes=BTCUSDT,ETHUSDT"

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

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

print(response.text)

Query URL

GET
https://api.itick.org/crypto/ticks?region=BA&codes=BTCUSDT,ETHUSDT

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "BTCUSDT": {
      "s": "BTCUSDT",
      "ld": 116100.9,
      "t": 1754585474123,
      "v": 0.00992,
      "tu": 1151.720928,
      "ts": 0
    },
    "ETHUSDT": {
      "s": "ETHUSDT",
      "ld": 3802.52,
      "t": 1754585474610,
      "v": 0.0648,
      "tu": 246.403296,
      "ts": 0
    }
  }
}
  1. Real-Time KlineCrypto Market

    Standardized crypto Kline data, including complete OHLCV fields (Open, High, Low, Close, Volume). Supporting multiple timeframes from 1-minute to monthly charts, it covers major cryptocurrencies such as Bitcoin (BTC) and Ethereum (ETH) with accurate and complete data.

  2. Crypto MarketBatch Real-Time Quote

    Enables batch retrieval of real-time quote data for multiple cryptocurrency trading pairs. Returns complete market snapshots for each pair, including latest price, 24-hour price change, trading volume, and order book. Designed specifically for portfolio monitoring, multi-currency market dashboards, and strategic decision-making, it significantly enhances data retrieval efficiency and reduces API call volume.