# Kalshi Event Detail Lookup

> Kalshi Event Detail Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches full detail for a Kalshi prediction market event by event ticker, including title, category, and all nested markets with current prices.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/kalshi-event-detail
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kalshi-event-detail-lookup-f3a65bb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aOJ3oVN_bO4NRSlxKmawu

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 kalshi-event-detail-lookup-f3a65bb8 -d '<json body>'
```

Example prompt: Pull the full event details for the Kalshi event with ticker PRES-2024, including the title, category, and current prices for all the nested markets.

## When to prefer this

Use this endpoint when you need comprehensive detail about a specific Kalshi event — including its full list of nested markets and live prices — identified by ticker symbol. Prefer this over a general market search when you already know the event ticker and need structured price data for all sub-markets in one call.

## Known failure modes

- Invalid or unknown event ticker returns an error or empty result
- Kalshi API downtime causes upstream failure
- Rate limiting if too many requests are sent in quick succession
- Malformed request body returns a validation error

## How this service works

Full detail for a Kalshi event by event ticker: title, category and every nested market with current prices. Free Kalshi public API.

## Output

Returns structured JSON containing the event's title, category, and an array of all nested markets within the event, each with its current bid/ask or yes/no prices and relevant market metadata.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kalshi-event-detail-lookup-f3a65bb8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
