Request
Bearer token. Example: Bearer YOUR_API_KEY
Query Parameters
The Kalshi market ticker. Values are normalized to uppercase.
The date to summarize, formatted as YYYY-MM-DD.
Time bucket resolution in seconds. Default: 60. Valid range: 1 to 3600.
Response
The Kalshi market ticker.
The bucket size used to build the summary.
Number of summary points returned.
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
Python SDK
CLI
Raw HTTP (cURL)
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
}
]
}