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

# Orderbook

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

The endpoint retrieves the current [order book](/glossary#order-book) as two arrays ([bids](/glossary#bid) / [asks](/glossary#ask)) with additional parameters.

<Note>
The API caches the response for 100 ms
</Note>

<Warning>
Rate limit 600 requests/10 sec.
</Warning>

## Path parameters

- `market` string, required

## Query parameters

- `limit` integer
- `level` integer

## 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 or not enabled for trading.

---

[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)
