Skip to main content
GET
/
api
/
v4
/
public
/
orderbook
/
depth
/
{market}
Depth
curl --request GET \
  --url https://whitebit.com/api/v4/public/orderbook/depth/{market}
{
  "ticker_id": "BTC_PERP",
  "timestamp": 1594391413,
  "asks": [
    [
      "9184.41",
      "0.773162"
    ]
  ],
  "bids": [
    [
      "9181.19",
      "0.010873"
    ]
  ]
}

Documentation Index

Fetch the complete documentation index at: https://whitebit-mintlify-spelling-grammar-fixes-1775434366.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Public depth endpoints exclude Retail Price Improvement (RPI) orders. RPI orders appear only in private active orders (private API/WebSocket) and in the exchange UI order book (web and mobile).

Path Parameters

market
string
required

Market pair name

Example:

"BTC_USDT"

Response

Successful response

ticker_id
string

Market Name

Example:

"BTC_PERP"

timestamp
integer

Current timestamp

Example:

1594391413

asks
string[][]

Array of ask orders

[price, quantity] — price in quote currency, quantity in base currency

Required array length: 2 elements
Example:
["9184.41", "0.773162"]
bids
string[][]

Array of bid orders

[price, quantity] — price in quote currency, quantity in base currency

Required array length: 2 elements
Example:
["9181.19", "0.010873"]