---
title: "Depth"
method: GET
path: "/api/v4/public/orderbook/depth/{market}"
tags: ["Public API V4"]
---

# Depth

`GET /api/v4/public/orderbook/depth/{market}`

The endpoint retrieves depth price levels within ±2% of the market last price. Use when lightweight order book data is needed for a narrow price band around the current market price. The ±2% constraint limits the response to price levels near the last traded price, reducing payload size compared to the full order book.

<Note>
The API caches the response for 1 sec
</Note>

<Warning>
Rate limit: 2000 requests/10 sec. See [Public API V4 overview](/public/http-v4/index) for rate limit details.
</Warning>

## Path parameters

- `market` string, required

## Response `200`

Successful response

- OrderbookResponse
  - `ticker_id` string — Market Name
  - `timestamp` integer — Current timestamp
  - `asks` array[] — Array of ask orders
    - string[] — [price, quantity] — price in quote currency, quantity in base currency
  - `bids` array[] — Array of bid orders
    - string[] — [price, quantity] — price in quote currency, quantity in base currency

## Other responses

- `422` — Validation error. Returned when the `market` path parameter is unknown, not enabled for trading, or not enabled for the Coingecko feed that backs this endpoint.

---

[API](https://skmtc.dev/whitebit/apis/whitebit-private-http-api-v4.md) · [All operations](https://skmtc.dev/whitebit/apis/whitebit-private-http-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/whitebit/whitebit-private-http-api-v4/revisions/76c9def9942f/schema)
