# HERGERT SYNTHORA Dispute Risk Analyzer

> HERGERT SYNTHORA Dispute Risk Analyzer is a paid API for AI agents from api.hergertsynthora.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Scans Polymarket prediction markets for dispute and resolution risk, scoring each market by likelihood of UMA challenge or contested resolution in the next 14 days

## Facts

- Endpoint: POST https://api.hergertsynthora.com/v1/dispute-risk
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hergert-synthora-dispute-risk-analyzer-364fb7ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DGmmBm9Qt1BcXVKLdd7UY

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 hergert-synthora-dispute-risk-analyzer-364fb7ff -d '<json body>'
```

Example prompt: Scan the next 14 days of Polymarket markets for dispute risk — show me up to 15 markets with at least $10,000 in 24h volume, and flag any with UMA proposals that are still challengeable.

## When to prefer this

Use this endpoint when you need structured, scored dispute-risk intelligence on Polymarket prediction markets — especially when approaching UMA resolution windows. Prefer this over generic Polymarket APIs when you need actionable risk flags (UMA bond status, challenge windows, holder concentration) rather than raw market data. Ideal for agents managing prediction market positions or monitoring for arbitrage opportunities around contested resolutions.

## Known failure modes

- Invalid or unknown market_slug returns an error or empty result
- condition_id not found on Polymarket returns a not-found error
- limit outside 1-20 range may return a validation error
- Markets with no UMA activity may return low scores with minimal reason detail
- Network or Polymarket data source outage may result in stale or unavailable data

## How this service works

Resolution/dispute risk score (0-100) for Polymarket markets: UMA status (proposed/disputed), UMA bond and reward, rules-text ambiguity (length, deadline date, declared resolution source), top-3 holder concentration as a vote-manipulation proxy, and days to resolution. Pass a market_slug or condition_id for one market, or nothing to scan the top markets resolving in the next 14 days. Built for prediction agents that price resolution risk before trading. No charge on service failure. Ed25519-signed. $0.05 USDC per call via x402 on Base. Free trial: 3 calls per wallet with header X-WALLET.

## Output

Returns a JSON object with a list of Polymarket markets ranked by dispute risk, each including a risk level (high/medium/low), a numeric score, human-readable risk reasons, UMA resolution status, bond and reward amounts, yes price, days to resolution, 24h USD volume, top-3 holder concentration percentage, and an overall methodology summary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max markets in scan mode (1-20, default 10)"
  },
  "min_volume": {
   "type": "number",
   "description": "Min 24h volume USD in scan mode (default 0)"
  },
  "market_slug": {
   "type": "string",
   "description": "Polymarket market slug (optional)"
  },
  "condition_id": {
   "type": "string",
   "description": "0x condition id (optional, overrides slug)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "niche": "dispute_risk",
  "result": {
   "mode": "scan_next_14d",
   "count": 10,
   "markets": [
    {
     "slug": "...",
     "level": "high",
     "score": 65,
     "reasons": [
      "UMA resolution proposed but still challengeable"
     ],
     "end_date": "...",
     "question": "...",
     "uma_bond": "250",
     "yes_price": 0.97,
     "uma_reward": "1.5",
     "condition_id": "0x...",
     "uma_statuses": [
      "proposed"
     ],
     "volume_24h_usd": 50000,
     "resolution_source": "https://...",
     "days_to_resolution": 1.2,
     "holder_top3_pct_visible": 41.5
    }
   ],
   "methodology": "...",
   "high_risk_count": 3
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hergert-synthora-dispute-risk-analyzer-364fb7ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.hergertsynthora.com](https://www.zero.xyz/host/api.hergertsynthora.com/llms.txt)
