# Predge Markets Movers — Whale-Driven Polymarket Price Movements

> Predge Markets Movers — Whale-Driven Polymarket Price Movements 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 biggest price-moving Polymarket prediction markets over a chosen time window, with whale vs. total volume breakdown

## Facts

- Endpoint: GET https://api.predge.io/v1/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-markets-movers-whale-driven-polymarket-price-movements-b41418b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Wmd2FFXuNSlq5woYw-dB

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-markets-movers-whale-driven-polymarket-price-movements-b41418b3
```

Example prompt: Pull Predge's top Polymarket movers for the last 6 hours — I want to see which markets had the biggest price swings and how much of the volume came from whale traders.

## When to prefer this

Choose this endpoint when you need a ranked, ready-to-use list of the most price-volatile Polymarket markets over a recent time window with whale volume attribution built in — especially useful for surfacing markets where large traders are driving moves that may signal informed activity. Prefer this over raw Polymarket API calls when you specifically need whale/large-trader segmentation alongside price movement data, without building your own heuristics.

## Known failure modes

- Invalid window parameter (not one of 1h, 6h, 24h) returns a 400 error
- Insufficient trade data for the window causes insufficient_data flag to be true with an empty or sparse markets array
- API key missing or invalid returns 401/402 payment required
- Rate limiting may occur if the endpoint is polled too frequently
- Service may return stale data during Polymarket API outages or indexing lag

## 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 object containing a list of markets sorted by price delta, each with: market title, category, platform (polymarket), condition_id, price before and after the window, price delta, number of trade prints in the window, total USD volume, and whale-attributed USD volume. Also includes the time window used and an insufficient_data flag.

## 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": "Will the Fed cut rates in September?",
    "category": "economics",
    "platform": "polymarket",
    "price_now": 0.62,
    "condition_id": "0x178a746e2b342c25b1d78d0f0d0ea77157c9b6d40b2e97ffbf827cd7f9994c39",
    "price_before": 0.44,
    "prints_in_window": 9,
    "volume_in_window_usd": 96400,
    "whale_volume_in_window_usd": 71000
   }
  ],
  "insufficient_data": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-markets-movers-whale-driven-polymarket-price-movements-b41418b3/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)
