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

---

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