# 2s Kalshi Events Lookup

> 2s Kalshi Events Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Retrieves a paginated list of prediction market events from Kalshi via the 2s everything API, filterable by status and series ticker.

## Facts

- Endpoint: GET https://2s.io/api/predict/kalshi-events
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-kalshi-events-lookup-9f237b90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pt0WjSzIlZpecEy7UU7el

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-kalshi-events-lookup-9f237b90
```

Example prompt: Show me up to 50 open Kalshi prediction market events for the series ticker 'INXD' — I want to see what's currently tradeable.

## When to prefer this

Use this endpoint when you need structured, ground-truth Kalshi prediction market event data — especially when filtering by market status (open, closed, settled, unopened) or scoping to a specific series. Prefer over scraping Kalshi directly or using unofficial sources, as this provides a pay-per-call anonymous API with no signup required.

## Known failure modes

- Invalid or unknown seriesTicker returns empty results or error
- Invalid status enum value returns a validation error
- Limit out of range (below 1 or above 100) returns a schema validation error
- Expired or invalid cursor causes pagination to fail
- Payment of 0.001 USDC not received results in 402 Payment Required response

## How this service works

Browse Kalshi events (an event groups related markets, e.g. an election or a game). Filter by status / series_ticker; page with limit + cursor. Returns event ticker, series, title, category, and market count. Read-only (no Kalshi key needed).

## Output

A paginated list of Kalshi prediction market events, including event metadata such as titles, statuses, series tickers, and a cursor for fetching the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "cursor": {
       "type": "string",
       "maxLength": 400
      },
      "status": {
       "enum": [
        "unopened",
        "open",
        "closed",
        "settled"
       ],
       "type": "string"
      },
      "seriesTicker": {
       "type": "string",
       "maxLength": 120
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-kalshi-events-lookup-9f237b90/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
