Batch Crypto Depth API Multi-Pair Order Book Quotes crypto market data API cryptocurrency ticker API REST API Batch real-time order book depth data for multiple cryptocurrency trading pairs in bulk. Returns the complete buy and sell order book for each trading pair, including multiple price levels and order quantities. Updated at millisecond intervals.

Please select

Batch Real-Time Depth

GET
/crypto/depths

Request Parameters

regionenumRequired
BA
Market code
codesstringRequired
Product code

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
sstring
Symbol code
aarray(object)
Ask orders
pointeger
Level
pnumber
Price
vnumber
Order volume
onumber
Order count
barray(object)
Bid orders
pointeger
Level
pnumber
Price
vnumber
Order volume
onumber
Order count

Code Examples

import requests

url = "https://api.itick.org/crypto/depths?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/depths?region=BA&codes=BTCUSDT,ETHUSDT

Response Result

{
  "code": 0,
  "msg": null,
  "data": {
    "BTCUSDT": {
      "s": "BTCUSDT",
      "a": [
        {
          "po": 1,
          "p": 116137.19,
          "v": 0.18474,
          "o": 0.18474
        },
        {
          "po": 2,
          "p": 116137.2,
          "v": 0.0006,
          "o": 0.0006
        },
        {
          "po": 3,
          "p": 116137.4,
          "v": 0.00005,
          "o": 0.00005
        },
        {
          "po": 4,
          "p": 116137.49,
          "v": 0.00005,
          "o": 0.00005
        },
        {
          "po": 5,
          "p": 116138,
          "v": 0.00005,
          "o": 0.00005
        }
      ],
      "b": [
        {
          "po": 1,
          "p": 116137.18,
          "v": 8.24124,
          "o": 8.24124
        },
        {
          "po": 2,
          "p": 116136,
          "v": 0.05295,
          "o": 0.05295
        },
        {
          "po": 3,
          "p": 116135.42,
          "v": 0.00042,
          "o": 0.00042
        },
        {
          "po": 4,
          "p": 116134.52,
          "v": 0.31005,
          "o": 0.31005
        },
        {
          "po": 5,
          "p": 116134.15,
          "v": 0.00005,
          "o": 0.00005
        }
      ]
    },
    "ETHUSDT": {
      "s": "ETHUSDT",
      "a": [
        {
          "po": 1,
          "p": 3811.26,
          "v": 27.1743,
          "o": 27.1743
        },
        {
          "po": 2,
          "p": 3811.27,
          "v": 0.4375,
          "o": 0.4375
        },
        {
          "po": 3,
          "p": 3811.28,
          "v": 0.0241,
          "o": 0.0241
        },
        {
          "po": 4,
          "p": 3811.29,
          "v": 0.0014,
          "o": 0.0014
        },
        {
          "po": 5,
          "p": 3811.3,
          "v": 0.0382,
          "o": 0.0382
        }
      ],
      "b": [
        {
          "po": 1,
          "p": 3811.25,
          "v": 132.6926,
          "o": 132.6926
        },
        {
          "po": 2,
          "p": 3811.24,
          "v": 2.0021,
          "o": 2.0021
        },
        {
          "po": 3,
          "p": 3811.05,
          "v": 4,
          "o": 4
        },
        {
          "po": 4,
          "p": 3811.03,
          "v": 1.6119,
          "o": 1.6119
        },
        {
          "po": 5,
          "p": 3810.99,
          "v": 12,
          "o": 12
        }
      ]
    }
  }
}
  1. Batch Real-Time QuoteCrypto Market

    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.

  2. Crypto MarketBatch Real-Time Kline

    Batch query historical K-line data for multiple crypto trading pairs. Supports complete OHLCV data across multiple timeframes, ranging from minute to monthly intervals, with the ability to trace back several years of history. The data is provided in a standardized and uniform format.