Kalshi Event Search

GET/gateway/v1/search/kalshi

[DEPRECATED] Use `GET /v1/search/prediction-market?platform=kalshi` instead. This endpoint will continue to work but will not receive new features.

---

Searches Kalshi events by keyword and/or category.

Filters: - Keyword matching event title, subtitle, or market title - Category

At least one of `q` or `category` is required. Returns events with nested markets.

Data refresh: ~30 minutes

Query Parameters

qstring

Search keyword matching event title, subtitle, or market title

Example: bitcoin
categoryenum<string>

Filter by category

Available options:cryptocultureeconomicsfinancialspoliticsstemsportsunknown
Example: crypto
statusenum<string>

Market status filter: `active`, `closed`, `determined`, `disputed`, `finalized`, `inactive`, or `initialized`

Available options:activecloseddetermineddisputedfinalizedinactiveinitialized
Example: active
limitinteger

Results per page

Example: 20
offsetinteger

Pagination offset

Example: 0
Kalshi Event Search
const options = {method: 'GET'};

fetch('https://api.asksurf.ai/gateway/v1/search/kalshi?q=bitcoin&category=crypto&status=active&limit=20&offset=0', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
OK
{
  "$schema": "https://example.com/schemas/DataResponseKalshiEvent.json",
  "data": [
    {
      "event_subtitle": "<string>",
      "event_ticker": "<string>",
      "event_title": "<string>",
      "market_count": 123,
      "markets": [
        {
          "category": "<string>",
          "close_time": 123,
          "end_time": 123,
          "event_ticker": "<string>",
          "event_title": "<string>",
          "last_day_open_interest": 123,
          "market_ticker": "<string>",
          "notional_volume_usd": 123,
          "open_interest": 123,
          "payout_type": "<string>",
          "result": "<string>",
          "start_time": 123,
          "status": "<string>",
          "subcategory": "<string>",
          "title": "<string>",
          "total_volume": 123
        }
      ]
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "empty_reason": "<string>",
    "has_more": true,
    "limit": 123,
    "offset": 123,
    "total": 123,
    "watermark": 123
  }
}