kalshi_event
Pack: kalshi · Endpoint: https://gateway.pipeworx.io/kalshi/mcp
AUTHORITATIVE odds from Kalshi — the only CFTC-regulated US prediction-market exchange (US persons CAN legally trade here, unlike Polymarket). Returns one event with ALL its child markets nested: event title + each market’s ticker, subtitle, yes_ask price, volume. Use when you need the full partition for an outright bet (“Fed funds in June 2026: each rate level is one market”). Pass include_orderbook=true to fetch live top-of-book for each market (slower but populates yes_bid/yes_ask/no_bid/no_ask + implied_yes_prob — required for most macro events since the nested response leaves prices null on the public unauth API). For cross-venue spreads vs Polymarket, see polymarket_kalshi_spread.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
event_ticker | string | yes | Kalshi event ticker, e.g. “KXFED-26OCT” |
include_orderbook | boolean | no | Default false. When true, fetches per-market orderbook in parallel and patches in best bid/ask + recomputed implied_yes_prob. Adds ~1s for events with ~10 markets. Required when the nested response returns null prices (common for macro events on the unauth API). |
Example call
Arguments
{
"event_ticker": "KXFED-26OCT"
}
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_event","arguments":{"event_ticker":"KXFED-26OCT"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kalshi_event', {
"event_ticker": "KXFED-26OCT"
});
Response shape
Always returns: found
| Field | Type | Description |
|---|---|---|
found | boolean | |
event | object | The event record; absent when found is false |
markets | array | Markets belonging to the event |
Full JSON Schema
{
"type": "object",
"description": "A Kalshi event with its markets. The ticker is nested at event.event_ticker — there is no top-level event_ticker.",
"properties": {
"found": {
"type": "boolean"
},
"event": {
"type": "object",
"description": "The event record; absent when found is false",
"properties": {
"event_ticker": {
"type": "string"
},
"title": {
"type": "string"
},
"category": {
"type": "string"
},
"series_ticker": {
"type": "string"
}
}
},
"markets": {
"type": "array",
"description": "Markets belonging to the event",
"items": {
"type": "object"
}
}
},
"required": [
"found"
]
}
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.