Skip to main content
GET
/
api
/
v1
/
public
/
depth
/
result
Order depth
curl --request GET \
  --url https://whitebit.com/api/v1/public/depth/result
{
  "asks": [
    [
      "9431.9",
      "0.705088"
    ]
  ],
  "bids": [
    [
      "9427.65",
      "0.547909"
    ]
  ]
}

Query Parameters

market
string
required

Available market. Example: BTC_USDT

Example:

"BTC_USDT"

limit
integer
default:100

Limit of results. Default: 100 Max: 100 Example: 100

Required range: 1 <= x <= 100
Example:

100

Response

Successful response

asks
string[][]

Array of ask orders

[Price, Amount]

Required array length: 2 elements
Example:
["9431.9", "0.705088"]
bids
string[][]

Array of bid orders

[Price, Amount]

Required array length: 2 elements
Example:
["9427.65", "0.547909"]