---
title: "Symbol Order Book Ticker"
method: GET
path: "/api/v3/ticker/bookTicker"
tags: ["Market"]
---

# Symbol Order Book Ticker

`GET /api/v3/ticker/bookTicker`

Best price/qty on the order book for a symbol or symbols.

- If the symbol is not sent, bookTickers for all symbols will be returned in an array.

Weight(IP):
- `2` for a single symbol;
- `4` when the symbol parameter is omitted;

## Query parameters

- `symbol` string
- `symbols` string

## Response `200`

Order book ticker

- union
  - BookTicker
    - `symbol` string, required
    - `bidPrice` string, required
    - `bidQty` string, required
    - `askPrice` string, required
    - `askQty` string, required
  - BookTicker[]
    - `symbol` string, required
    - `bidPrice` string, required
    - `bidQty` string, required
    - `askPrice` string, required
    - `askQty` string, required

## Other responses

- `400` — Bad Request

## Changes

- **2022-05-23** `48fbf99b3887` — 1 info
  - added the new optional `query` request parameter `symbols`
- **2021-10-25** `a484ce871a72` — 12 info
  - the response property `code` became required for the status `400`
  - the response property `msg` became required for the status `400`
  - the response property `oneOf[#/components/schemas/bookTickerList]/items/askPrice` became required for the status `200`
  - the response property `oneOf[#/components/schemas/bookTickerList]/items/askQty` became required for the status `200`
  - …8 more

[Change history](https://skmtc.dev/binance/apis/binance-public-spot-api/changes/api/v3/ticker/bookTicker/get.md)

---

[API](https://skmtc.dev/binance/apis/binance-public-spot-api.md) · [All operations](https://skmtc.dev/binance/apis/binance-public-spot-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/binance/binance-public-spot-api/revisions/0dd2f133e12d/schema)
