---
title: "Get Multiple Market Orderbooks"
method: GET
path: "/markets/orderbooks"
tags: ["market"]
---

# Get Multiple Market Orderbooks

`GET /markets/orderbooks`

Endpoint for getting the current order books for multiple markets in a single request. The order book shows all active bid orders for both yes and no sides of a binary market. It returns yes bids and no bids only (no asks are returned). This is because in binary markets, a bid for yes at price X is equivalent to an ask for no at price (100-X). For example, a yes bid at 7¢ is the same as a no ask at 93¢, with identical contract sizes. Each side shows price levels with their corresponding quantities and order counts, organized from best to worst prices. Returns one orderbook per requested market ticker.

## Query parameters

- `tickers` string[], required

## Response `200`

Orderbooks retrieved successfully

- GetMarketOrderbooksResponse
  - `orderbooks` MarketOrderbookFp[], required
    - `ticker` string, required
    - `orderbook_fp` OrderbookCountFp, required — Orderbook with fixed-point contract counts (fp) in all dollar price levels.
      - `yes_dollars` PriceLevelDollarsCountFp[], required
        - string[] — Price level in dollars represented as [dollars_string, fp] where dollars_string is like "0.1500" and fp is a FixedPointCount string (fixed-point contract count). The second element is the contract quantity (not price).
      - `no_dollars` PriceLevelDollarsCountFp[], required
        - string[] — Price level in dollars represented as [dollars_string, fp] where dollars_string is like "0.1500" and fp is a FixedPointCount string (fixed-point contract count). The second element is the contract quantity (not price).

## Other responses

- `400` — Bad request - invalid input
- `401` — Unauthorized - authentication required
- `500` — Internal server error

---

[API](https://skmtc.net/kalshi/apis/kalshi-trade-api-manual-endpoints.md) · [All operations](https://skmtc.net/kalshi/apis/kalshi-trade-api-manual-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kalshi/kalshi-trade-api-manual-endpoints/revisions/6aec27d55fba/schema)
