> For the complete documentation index, see [llms.txt](https://ajaib.gitbook.io/ajaib-exchange-open-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ajaib.gitbook.io/ajaib-exchange-open-api/api-references/editor/order-book-ticker.md).

# Order Book Ticker

## Retrieve best bid/ask prices on the order book

<mark style="color:green;">`GET`</mark> `/v1/ticker/book-ticker`

**Functionality:** Returns the best bid and ask prices along with corresponding quantities for requested symbols&#x20;

**Authentication:** Required

#### URL Parameters

<table><thead><tr><th width="135.2109375">Name</th><th width="107">Type</th><th width="114.12890625" data-type="checkbox">Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>symbols</td><td>string</td><td>true</td><td>Symbol of trading pair. Refer to <a href="https://ajaib.gitbook.io/coin-exchange-open-api/getting-started/quickstart#:~:text=Asset%20Symbols%20/%20Trading%20Pairs">this</a>. Maximum symbols that can be fetched is 50.<br>for example <code>symbols=["BNB_IDR","BTC_IDR"]</code></td></tr><tr><td>timestamp</td><td>long</td><td>true</td><td>Timestamp when client sending request.</td></tr><tr><td>recvWindow</td><td>long</td><td>false</td><td>Number of milliseconds after timestamp the request is valid for. Refer to <a href="https://app.gitbook.com/o/LdxNUhLARU4i5PWgRIYE/s/QFDWMfeUb31y6zAF2lKc/~/changes/12/getting-started/timing-security">this</a>.</td></tr></tbody></table>

**Response Body**

<table><thead><tr><th width="167">Name</th><th width="146">Type</th><th>Description</th></tr></thead><tbody><tr><td>symbol</td><td>String</td><td>Symbol information</td></tr><tr><td>bidPrice</td><td>String</td><td>The price of the best bid</td></tr><tr><td>bidQty</td><td>String</td><td>The quantity of the best bid</td></tr><tr><td>askPrice</td><td>String</td><td>The price of the best ask</td></tr><tr><td>askQty</td><td>String</td><td>The quantity of the best ask</td></tr></tbody></table>

{% tabs %}
{% tab title="200 OK" %}

```javascript
[
  {
    "symbol": "BNB_IDR",
    "bidPrice": "14154000",
    "bidQty": "0.025",
    "askPrice": "14182000",
    "askQty": "0.065"
  },
  {
    "symbol": "BTC_IDR",
    "bidPrice": "1791953000",
    "bidQty": "0.000055",
    "askPrice": "1795540000",
    "askQty": "0.000051"
  }
]
```

{% endtab %}
{% endtabs %}
