Kalshi Open Interest

GET/gateway/v1/prediction-market/kalshi/open-interest

Daily open interest time series for a Kalshi market.

Data refresh: ~30 minutes

Query Parameters

tickerstringrequired

Market ticker identifier. Use GET /v1/prediction-market/kalshi/markets or GET /v1/search/kalshi?q={keyword} to discover valid tickers.

Example: KXBTC2026250-27JAN01-250000
time_rangeenum<string>

Window of history to return: `7d`, `30d`, `90d`, `180d`, or `1y`. This endpoint uses `time_range` only — it does NOT accept `interval`.

Available options:7d30d90d180d1y
Example: 30d
Kalshi Open Interest
const options = {method: 'GET'};

fetch('https://api.asksurf.ai/gateway/v1/prediction-market/kalshi/open-interest?ticker=KXBTC2026250-27JAN01-250000&time_range=30d', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
OK
{
  "$schema": "https://example.com/schemas/DataResponseKalshiOIPoint.json",
  "data": [
    {
      "open_interest": 123,
      "timestamp": 123
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "empty_reason": "<string>",
    "has_more": true,
    "limit": 123,
    "offset": 123,
    "total": 123,
    "watermark": 123
  }
}