# Kalshi Market Order Book via proxy.suverse.io

> Kalshi Market Order Book via proxy.suverse.io is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns the live order book (yes/no price levels and resting size) for a specified Kalshi prediction market ticker.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/kalshi-market-orderbook
- Price: $0.1/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-order-book-via-proxy-suverse-io-14819f29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2hIK4dBSPlJ6rwvfkdPuY

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-order-book-via-proxy-suverse-io-14819f29 -d '<json body>'
```

Example prompt: Pull the live order book for the Kalshi market with ticker INXD-24DEC31-T4500 — I want to see the yes and no price levels and how much is resting at each level.

## When to prefer this

Use this endpoint when you need real-time order book depth (full price ladder and resting sizes) for a specific Kalshi prediction market, rather than just the top-of-book quoted price. Prefer this over general market summary endpoints when you need to assess liquidity, calculate market impact, or monitor spread changes.

## Known failure modes

- Invalid or unknown ticker returns an error or empty order book
- Market not currently active or trading halted may return empty levels
- Rate limits or proxy downtime may cause 5xx errors
- Stale data if Kalshi API is experiencing latency
- Malformed request body (wrong bodyType or missing fields) returns 400

## How this service works

Live order book for a Kalshi market by ticker: yes and no price levels with resting size. Real depth behind the quoted odds. Free Kalshi public API.

## Output

A structured order book response containing yes-side and no-side price ladders, each with price levels (in cents or probability) and the resting contract size at each level, reflecting live market depth on Kalshi.

## 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-order-book-via-proxy-suverse-io-14819f29/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)
