Skip to main content
GET
/
api
/
v1
/
kalshi
/
market
/
orderbook-summary
Get Kalshi Orderbook Summary
curl --request GET \
  --url https://api.entityml.com/api/v1/kalshi/market/orderbook-summary \
  --header 'Authorization: <authorization>'
{
  "market_ticker": "<string>",
  "date": "<string>",
  "resolution_seconds": 123,
  "data_points": 123,
  "data": [
    {}
  ]
}

Request

Headers

Authorization
string
required
Bearer token. Example: Bearer YOUR_API_KEY

Query Parameters

ticker
string
required
The Kalshi market ticker. Values are normalized to uppercase.
date
string
required
The date to summarize, formatted as YYYY-MM-DD.
resolution
integer
Time bucket resolution in seconds. Default: 60. Valid range: 1 to 3600.

Response

market_ticker
string
The Kalshi market ticker.
date
string
The requested date.
resolution_seconds
integer
The bucket size used to build the summary.
data_points
integer
Number of summary points returned.
data
array
Array of time buckets with timestamp, best_bid, best_bid_size, best_ask, and best_ask_size. Bid and ask values may be null until that side of the book has been observed.

Example

from poly_storage_sdk import PolyStorageClient

client = PolyStorageClient(api_key="YOUR_API_KEY")

summary = client.kalshi.get_orderbook_summary(
    ticker="KXBTC-26FEB2606-B60125",
    date="2026-02-26",
    resolution=60,
)

print(summary["data_points"])

Example response

{
  "market_ticker": "KXBTC-26FEB2606-B60125",
  "date": "2026-02-26",
  "resolution_seconds": 60,
  "data_points": 1,
  "data": [
    {
      "timestamp": 1772103660000,
      "best_bid": null,
      "best_bid_size": null,
      "best_ask": 0.6,
      "best_ask_size": 14
    }
  ]
}