OrderBooks
Get List of OrderBooks
Method: GET
Endpoint:
/api/v1/crypto/order-books
Query:
offset
: (integer) Pagination offset.limit
: (integer) Number of records to return.rangeDateStart
: (string) Start date of the range.rangeDateEnd
: (string) End date of the range.exchangeNames[]
: (array) List of exchange names (e.g. Binance).symbol
: (string) Trading pair symbol (e.g. BTC/USDT).
Description:
The /api/v1/crypto/order-books endpoint fetches real-time or historical order book data for specified cryptocurrency trading pairs from various exchanges. An order book is a list of buy (bids) and sell (asks) orders organized by price level and is essential for understanding market depth and liquidity. This endpoint provides detailed insights into market sentiment and potential price movements by returning the bids and asks at different price levels for selected intervals. It supports fine-tuned queries with parameters for pagination (offset, limit), time range (rangeDateStart, rangeDateEnd), exchange filters (exchangeNames[]), and specific trading pairs (symbol).
Example with curl:
Example Response Payload:
Last updated