{symbol}: Get order book for symbol

API: cryptomkt.com:cryptomarket-api
Endpoint: /public/orderbook/{symbol}
Response format: application/json
Auth: unknown
Method: GET
Last Status: 200
Latency: 269ms

Description

Returns current bid and ask orders with price and quantity. Use this to see market depth, current spreads, and available liquidity for trading decisions.

From spec: Returns an order book (list of buy and sell orders) for a specific symbol, structured by price level.

Usage Tips

- Default limit returns 100 price levels per side - Prices are ordered: asks ascending, bids descending - Each entry is [price, quantity] array - Timestamp indicates when the snapshot was taken

Parameters (3)

depth (integer, query, optional)

Number of price levels to return (default: full book)

symbol (string, path, required)

Trading symbol code (e.g., BTCUSDT, ETHBTC)

volume (number, query, optional)

Volume for volume-based search (ignores depth when used)

Examples (1)

Get BTCUSDT order book snapshot probe-gate

Demonstrates fetching the current order book to see bid/ask prices and market depth

curl 'https://api.exchange.cryptomkt.com/api/3/public/orderbook/BTCUSDT?limit=5'
import requests

resp = requests.get(
    "https://api.exchange.cryptomkt.com/api/3/public/orderbook/BTCUSDT",
    params={
        'limit': '5',
    },
)
data = resp.json()
import zingu_apis

api = zingu_apis.api("cryptomkt")
result = api.fetch("public/orderbook/{symbol}", limit=5)

for item in result:
    print(item)
const resp = await fetch("https://api.exchange.cryptomkt.com/api/3/public/orderbook/BTCUSDT?limit=5");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 00:54:29.229765 200 269ms
2026-04-15 01:01:04.912273 200 207ms
2026-04-14 02:02:55.694817 200 200ms
2026-04-12 15:07:16.088140 200 180ms
2026-04-10 00:10:09.792218 200 828ms
2026-04-09 03:17:32.591822 200 164ms