Skip to main content
GET
/
margin
/
markets
/
{ticker}
/
orderbook
Get Market Orderbook
curl --request GET \
  --url https://external-api.kalshi.com/trade-api/v2/margin/markets/{ticker}/orderbook
{
  "orderbook": {
    "bids": [
      [
        "0.1500",
        "100.00"
      ]
    ],
    "asks": [
      [
        "0.1500",
        "100.00"
      ]
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.kalshi.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

ticker
string
required

Ticker of the market

Query Parameters

depth
integer
default:0

Depth of the orderbook to retrieve (0 means all levels)

Required range: x >= 0
aggregation_tick_size
string

Tick size in dollars for aggregating price levels (e.g., 0.10 for 10 cent buckets)

Response

Orderbook retrieved successfully

orderbook
object
required