kalshi_top_markets

Pack: kalshi · Endpoint: https://gateway.pipeworx.io/kalshi/mcp

Ranking / leaderboard of Kalshi’s most-traded markets right now — use this for “what is the highest volume prediction market on Kalshi”, “most traded Kalshi market”, or any top-N-by-activity question. Kalshi’s /markets endpoint has NO server-side sort and its raw listing is 99%+ algorithmically-generated multivariate combo markets with zero volume, so paging through it would surface junk. This instead discovers real, currently-active markets via Kalshi’s own search/relevance index, then re-ranks the leaders using each market’s authoritative live volume/price detail. Returns title, ticker, event_ticker, volume, volume_24h, open_interest, liquidity, yes/no price (cents), close_time, as_of, and source, sorted highest-first. Not an exhaustive scan of every one of Kalshi’s ~14,000 series — see method and candidates_considered in the response for the disclosed scan size.

Parameters

NameTypeRequiredDescription
bystringnovolume (default, all-time contracts traded) | volume_24h | open_interest | liquidity
limitnumberno1-50 (default 10)
statusstringno”open” (default — only markets not yet past close_time) | “any” (include markets whose close_time has passed, still excludes settled/resulted ones)

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/kalshi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kalshi_top_markets","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('kalshi_top_markets', {});

More examples

{
  "by": "open_interest",
  "limit": 5
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "kalshi": {
      "url": "https://gateway.pipeworx.io/kalshi/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 3, 2026