Crypto Kline API Single Trading Pair Historical Candlestick Data crypto market data API cryptocurrency ticker API REST API 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.
Please select
Real-Time Kline
GET
/crypto/kline
Request Parameters
regionenumRequired
BA
Market code
codestringRequired
Product code
kTypeenumRequired
5 minutes
Interval: 1 minute, 2 five minutes, 3 fifteen minutes, 4 thirty minutes, 5 one hour, 8 one day, 9 one week, 10 one month
etstring
When the query end timestamp (e.g., 1751328000000) is empty, it defaults to the current timestamp.
limitstringRequired
Number of records to query
Response Parameters
codenumber
Response code
msgstring
Response description
dataarray(object)
Response result
tunumber
Transaction amount
cnumber
Closing price of the Kline
tnumber
Timestamp
vnumber
Transaction volume
hnumber
Highest price of the Kline
lnumber
Lowest price of the Kline
onumber
Opening price of the Kline
Code Examples
import requests
url = "https://api.itick.org/crypto/kline?region=BA&code=BTCUSDT&kType=2&limit=10"
headers = {
"accept": "application/json"
"token": "Your Token"
}
response = requests.get(url, headers=headers)
print(response.text)
Query URL
GET
https://api.itick.org/crypto/kline?region=BA&code=BTCUSDT&kType=2&limit=10
Response Result
{
"code": 0,
"msg": null,
"data": [
{
"tu": 160779.4452843,
"c": 92490.57,
"t": 1741239180000,
"v": 1.7387,
"h": 92491.67,
"l": 92438.54,
"o": 92474.22
}
]
}- Real-Time DepthCrypto Market
Real-time order book depth data for cryptocurrencies. Provides a complete list of buy and sell orders, including the price and order quantity at each level, supporting depth from L1 to L50+ levels. Market depth data is updated at millisecond intervals.
- Crypto MarketBatch Real-Time Tick
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.