# Kalshi Market Detail by Ticker

> Kalshi Market Detail by Ticker 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-15).

Returns full market detail for a Kalshi prediction market by ticker symbol, including title, rules, bid/ask prices, last price, volume, open interest, close time, and status.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/kalshi-market-detail
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kalshi-market-detail-by-ticker-2fc95b0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I-lZ2SudHV2KYfEJLnRkD

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-market-detail-by-ticker-2fc95b0a -d '<json body>'
```

Example prompt: Can you pull up the full market details for the Kalshi ticker PRES-2024-REP — I want to see the current yes/no bid and ask prices, last traded price, volume, open interest, close time, and market status?

## When to prefer this

Use this endpoint when you need comprehensive, structured detail about a single Kalshi prediction market by its ticker symbol, including both sides of the order book (yes/no bid+ask), volume, and close time — especially when building trading tools, monitoring dashboards, or performing pre-trade analysis on Kalshi contracts. Prefer this over scraping Kalshi's website or building your own Kalshi API integration, as it exposes the public Kalshi data through a simple pay-per-call interface.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Kalshi API unavailability causes upstream failure
- Market has been delisted or expired, returning stale or missing data
- Rate limiting or payment failures when the x402 USDC payment is not processed correctly

## How this service works

Full detail for a Kalshi market by ticker: title, rules, yes/no bid + ask, last price, volume, open interest, close time and status. Free Kalshi public API.

## Output

A structured object containing the Kalshi market's title, rules text, yes bid price, yes ask price, no bid price, no ask price, last traded price, total volume, open interest, scheduled close time, and current market status (e.g. open, closed, settled).

## 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-market-detail-by-ticker-2fc95b0a/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)
