# Kalshi Market Trades Feed

> Kalshi Market Trades Feed 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 recent executed trades for a Kalshi prediction market by ticker, including price, contract count, taker side, and timestamp.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/kalshi-market-trades
- 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-trades-feed-794906d7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__TRNw1NTipx6pRmT59C0y

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-trades-feed-794906d7 -d '<json body>'
```

Example prompt: Pull the most recent executed trades for the Kalshi market with ticker PRES-2024-REP — I want to see price, contract count, taker side, and timestamp for each trade.

## When to prefer this

Use this endpoint when you need the real-time trade execution tape for a specific Kalshi prediction market, including directional taker-side data and per-trade timestamps. Prefer this over order book snapshots when you want to analyze actual executed volume and price discovery. It is the right choice for monitoring momentum, spotting large trades, or tracking how a contract's price has moved through recent fills on a US-regulated event market.

## Known failure modes

- Invalid or unknown ticker returns empty result or error
- Kalshi API rate limit or downtime causes upstream failure
- Malformed request body returns 400 or validation error
- Payment failure (x402) if USDC is not provided
- Ticker format case sensitivity may cause no-match

## How this service works

Recent executed trades for a Kalshi market by ticker: price, contract count, taker side and timestamp. Live tape for a US-regulated event contract. Free Kalshi public API.

## Output

A list of recently executed trades for the specified Kalshi market ticker, each containing the trade price, number of contracts traded, taker side (buy or sell), and the timestamp of execution. Data reflects the live public trade tape from Kalshi's US-regulated prediction market exchange.

## 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-trades-feed-794906d7/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)
