# Predge Kalshi Markets Movers

> Predge Kalshi Markets Movers is a paid API for AI agents from api.predge.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the top-moving Kalshi prediction markets by price delta and whale institutional flow volume over a configurable time window

## Facts

- Endpoint: GET https://api.predge.io/v1/kalshi/markets/movers
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-kalshi-markets-movers-a2608108
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__BHpxR11MlK-vONR2HEMi

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 predge-kalshi-markets-movers-a2608108
```

Example prompt: Show me the top-moving Kalshi prediction markets over the last 6 hours, including which ones have the most whale institutional volume — I want to know where the big money is moving.

## When to prefer this

Use this endpoint when you specifically want to monitor price-moving Kalshi prediction markets and detect large institutional or whale flows in near real-time. Prefer it over generic Kalshi API access when you need pre-computed price deltas and volume breakdowns without building your own trade aggregation logic. Best suited for agents doing market surveillance, briefing generation, or anomaly detection on Kalshi.

## Known failure modes

- Insufficient trade data for the window returns insufficient_data: true with an empty markets array
- Invalid window value returns a validation error
- Kalshi public API downtime may cause stale or missing data
- Payment not included or insufficient USDC results in HTTP 402 with no data returned

## How this service works

Real-time alerts on whale traders on Polymarket. Heuristic Insider Watch, wallet scoring 0–100, Bloomberg-style web terminal. Free plan included.

## Output

A JSON array of Kalshi prediction markets ranked by price movement within the chosen window, each entry including the market title, ticker, category, current and previous prices (normalized to YES side from trade prints), price delta, number of prints in the window, total USD volume, and whale/institutional USD volume. Metadata notes that trade attribution is anonymous and outcomes are not verified.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "prices derived from trade prints normalized to the YES side, not orderbook quotes",
  "window": "6h",
  "markets": [
   {
    "delta": 0.18,
    "title": "Fed funds rate above 3.75% after the December meeting?",
    "ticker": "FED-25DEC-T3.75",
    "category": "economics",
    "platform": "kalshi",
    "price_now": 0.62,
    "price_before": 0.44,
    "prints_in_window": 9,
    "volume_in_window_usd": 96400,
    "whale_volume_in_window_usd": 71000
   }
  ],
  "platform": "kalshi",
  "data_basis": "anonymous institutional flow — Kalshi's public API does not attribute trades to traders; not outcome-verified",
  "outcome_verified": false,
  "insufficient_data": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-kalshi-markets-movers-a2608108/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.predge.io](https://www.zero.xyz/host/api.predge.io/llms.txt)
