# SYNTHORA Polymarket Odds Movers

> SYNTHORA Polymarket Odds Movers is a paid API for AI agents from polymarket-odds-movers.hergertsynthora.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns Polymarket prediction markets ranked by biggest price swing over a chosen time window (1h, 24h, or 1wk), with yes price, price change, direction, bid/ask spread, 24h volume, liquidity, and end date.

## Facts

- Endpoint: POST https://polymarket-odds-movers.hergertsynthora.com/service
- 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/synthora-polymarket-odds-movers-17a56941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rCsFB-GLItXMo-8o5fffL

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 synthora-polymarket-odds-movers-17a56941 -d '<json body>'
```

Example prompt: Show me the top 20 Polymarket markets with the biggest odds swings in the last 24 hours, but only include markets with at least $25,000 in daily volume.

## When to prefer this

Use this endpoint when you need a pre-ranked, real-time snapshot of which Polymarket prediction markets are experiencing the most significant price movement over a specific window, rather than querying individual market prices or doing your own sorting. It is ideal for trend detection, alerting workflows, momentum screens, and research digests that need volume-filtered, liquid markets with directional context — all in one structured response.

## Known failure modes

- Invalid window value (not 1h, 24h, or 1wk) may return an error or default behavior
- limit outside 1-50 range may be clamped or rejected
- min_volume set very high may return zero results
- Polymarket data source unavailable causes fetch failure
- Network timeout on the hergertsynthora.com host

## How this service works

Polymarket odds movers: active markets ranked by biggest price swing in the last 1h / 24h / 1wk (window param), with yes price, change and direction, best bid/ask, spread, 24h volume, liquidity and end date.

## Output

A JSON object with an ok flag, the time window used, total markets scanned, a ranked list of up to 50 movers each containing the market slug, question text, yes price, price change, direction (up/down), bid/ask spread, 24h volume in USD, liquidity in USD, and end date — plus aggregate counts of up vs down movers and the single biggest absolute move observed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max markets (1-50, default 15)"
  },
  "window": {
   "type": "string",
   "description": "1h | 24h | 1wk (default 24h)"
  },
  "min_volume": {
   "type": "number",
   "description": "Min 24h volume USD (default 10000)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "polymarket_odds_movers",
  "result": {
   "count": 15,
   "movers": [
    {
     "slug": "...",
     "change": 0.21,
     "spread": 0.01,
     "end_date": "...",
     "question": "...",
     "direction": "up",
     "yes_price": 0.63,
     "liquidity_usd": 80000,
     "volume_24h_usd": 150000
    }
   ],
   "window": "24h",
   "up_count": 9,
   "down_count": 6,
   "markets_scanned": 400,
   "biggest_move_abs": 0.45
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-polymarket-odds-movers-17a56941/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polymarket-odds-movers.hergertsynthora.com](https://www.zero.xyz/host/polymarket-odds-movers.hergertsynthora.com/llms.txt)
