# SYNTHORA Polymarket Resolution Watch

> SYNTHORA Polymarket Resolution Watch is a paid API for AI agents from polymarket-resolution-watch.hergertsynthora.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns Polymarket prediction markets expiring within N days with UMA oracle resolution status, bond/reward details, pricing, volume, liquidity, and risk flags for contested resolutions.

## Facts

- Endpoint: POST https://polymarket-resolution-watch.hergertsynthora.com/service
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-polymarket-resolution-watch-a0f7789c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Is6d83V18jKLYgkfJjTQa

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-resolution-watch-a0f7789c -d '<json body>'
```

Example prompt: Show me all Polymarket markets resolving in the next 3 days with at least $5000 in 24h volume — up to 50 markets — and flag any with contested or undecided UMA resolutions.

## When to prefer this

Use this endpoint when you need a real-time snapshot of Polymarket prediction markets approaching resolution, especially when UMA oracle risk (disputed or proposed resolutions) is a concern. It is purpose-built for Polymarket + UMA and returns pre-aggregated risk signals not available from generic prediction market APIs. Prefer it over scraping Polymarket directly or querying UMA separately when you need combined resolution status and market metrics in a single call.

## Known failure modes

- Invalid days value outside 0-60 range returns validation error
- Limit outside 1-100 range rejected
- No markets found for the specified window returns empty array with count 0
- Upstream Polymarket API unavailability causes timeout or error response
- min_volume filter too high returns zero results silently

## How this service works

Polymarket resolution watch: markets ending within N days (default 7) with UMA resolution status (proposed/disputed), UMA bond and reward, hours to resolution, last price, 24h volume, liquidity and a uma_risk flag for contested or undecided resolutions.

## Output

A JSON object containing a list of up to 100 Polymarket markets expiring within the specified window, each with: market slug, question text, end date, current YES price, 24h USD volume, liquidity, UMA resolution status (proposed/disputed), UMA bond and reward amounts, hours until resolution, and a boolean uma_risk flag. Also includes aggregate counts of total markets returned and how many carry UMA risk.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "days": {
   "type": "number",
   "description": "Days ahead to scan (0-60, default 7)"
  },
  "limit": {
   "type": "integer",
   "description": "Max markets (1-100, default 20)"
  },
  "min_volume": {
   "type": "number",
   "description": "Min 24h volume USD (default 0)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "polymarket_resolution_watch",
  "result": {
   "count": 20,
   "markets": [
    {
     "slug": "...",
     "end_date": "...",
     "question": "...",
     "uma_bond": "250",
     "uma_risk": true,
     "yes_price": 0.98,
     "uma_reward": "1.5",
     "uma_statuses": [
      "proposed"
     ],
     "volume_24h_usd": 50000,
     "hours_to_resolution": 5.2
    }
   ],
   "days_ahead": 7,
   "uma_risk_count": 4
  }
 }
}
```

## More

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