Get KLSI Raw Orderbook Deltas
Retrieve raw orderbook delta data for a Kalshi market. Each row represents a single orderbook change event with the price level, size delta, and side.
What you get
- Price level and size delta for each change
- Bid/ask side indicator
- Server and ingest timestamps for precise event ordering
- Venue and exchange identifiers
Use cases
- Reconstruct full orderbook history tick-by-tick
- Analyze order flow and liquidity dynamics
- Build high-frequency trading signals
- Study market microstructure
Example
- Request:
GET /api/v1/klsi/AMAZONFTC-29DEC31/raw_deltas?limit=10 - Header:
X-API-Key: YOUR_API_KEY
Authorizations
Your API key (get one from the test-key endpoint above)
Path Parameters
Kalshi market ID
Query Parameters
Maximum number of rows to return (default: 10 in docs, max: 10000). Use a higher limit in your code.
Response
Raw orderbook delta data
Kalshi market identifier
Venue identifier
Venue-specific market identifier
Server timestamp (nanoseconds)
Ingest timestamp (nanoseconds)
Price level in cents
Size change at this price level (positive = added, negative = removed)
Side of the orderbook (bid or ask)
Exchange identifier
Timestamp when the delta was received

