# DisputeTracker – Polymarket UMA Dispute Metrics

> DisputeTracker – Polymarket UMA Dispute Metrics is a paid API for AI agents from x402.disputetracker.xyz, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns trader-grade dispute tracking metrics for a Polymarket market, including UMA oracle stage, time confidence, activity counts, and resolution progress.

## Facts

- Endpoint: POST https://x402.disputetracker.xyz/api/agent/market-metrics/x402
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disputetracker-polymarket-uma-dispute-metrics-9a78ae14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NsbiXY7u29c4e920pBo-5

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 disputetracker-polymarket-uma-dispute-metrics-9a78ae14 -d '<json body>'
```

Example prompt: Can you pull the current UMA dispute stage and resolution progress for the Polymarket market at https://polymarket.com/event/example-polymarket-event — I want to know how many disputes have been filed, what phase we're in, and how much time is left?

## When to prefer this

Use this endpoint when you need real-time, structured UMA dispute stage tracking for a specific Polymarket prediction market — especially for trading decisions that depend on knowing whether a market is in initial dispute, escalated to DVM voting, or approaching resolution. Prefer this over manual chain inspection when you need confidence scores, time estimates, and activity rollups in a single call.

## Known failure modes

- Invalid or unknown market slug/URL returns an error or empty market object
- Market not currently in dispute returns null or minimal stage data
- UMA subgraph or on-chain data unavailable causes degraded confidence scores or stale data
- Rate limiting or payment failure returns 402 or 429 status
- Network timeout from upstream oracle data sources returns 503

## How this service works

Trader-grade Polymarket dispute tracker for UMA stages, time confidence, liquidity, and dispute outcomes.

## Output

Returns a JSON object containing: the Polymarket market metadata (title, status, resolution state), the current UMA dispute stage with ID, label, confidence score, and explanation, activity counts (disputes, chain events, voting rounds, oracle requests), resolution progress details (time left label, next event, time confidence level, progress percentage, active stage label), the data source (live or cached), and a generation timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "slugOrUrl": {
   "type": "string",
   "examples": [
    "iran-agrees-to-end-enrichment-of-uranium-by-december-31",
    "https://polymarket.com/event/example-polymarket-event"
   ],
   "maxLength": 2048,
   "minLength": 1,
   "description": "A Polymarket market/event slug or full Polymarket URL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "market": {
   "url": "https://polymarket.com/event/example-polymarket-event",
   "slug": "example-polymarket-event",
   "title": "Example Polymarket event",
   "status": "CLOSED",
   "question": "Will the event resolve YES?",
   "resolved": false,
   "updatedAt": "2026-07-21T11:59:00.000Z",
   "resolvedOutcome": null
  },
  "result": {
   "stage": {
    "id": "SECOND_DISPUTE_ESCALATED_TO_DVM",
    "label": "Escalated to UMA DVM",
    "confidence": 0.9,
    "explanation": "A second dispute escalated the request to UMA voting.",
    "missingFields": [],
    "dataCompletenessScore": 0.85
   },
   "activity": {
    "disputes": 2,
    "chainEvents": 4,
    "votingRounds": 1,
    "evidenceItems": 0,
    "oracleRequests": 1
   },
   "progress": {
    "timeLeftLabel": "about 24 hours",
    "nextEventLabel": "Reveal phase",
    "timeConfidence": "estimated",
    "progressPercent": 60,
    "activeStageLabel": "UMA commit phase",
    "finalTimeLeftLabel": "about 3 days"
   },
   "latestMetrics": null
  },
  "source": "live",
  "priceTier": "standard",
  "capability": "market-metrics",
  "generatedAt": "2026-07-21T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disputetracker-polymarket-uma-dispute-metrics-9a78ae14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.disputetracker.xyz](https://www.zero.xyz/host/x402.disputetracker.xyz/llms.txt)
