Cryptocurrency Batch Tick Data API 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.io/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.io/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
    }
  }
}