Real-time Tick Data crypto market data API cryptocurrency ticker API REST API Covers in-depth data fields including latest prices, bid and ask prices, 24-hour trading volume for thousands of cryptocurrencies such as Bitcoin (BTC) and Ethereum (ETH). With low latency and high frequency, it provides core data support for your quantitative trading, market dashboards, and DApps. Free trial available.

Please select

Real-Time Tick

GET
/crypto/tick

Request Parameters

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

Code Examples

import requests

url = "https://api.itick.io/crypto/tick?region=BA&code=BTCUSDT"

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

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

print(response.text)

Query URL

GET
https://api.itick.io/crypto/tick?region=BA&code=BTCUSDT

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "s": "BTCUSDT",
    "ld": 116101.99,
    "t": 1754585108147,
    "v": 0.36735,
    "tu": 42649.3395843,
    "ts": 0
  }
}