# DisputeTracker Stage Assessment

> DisputeTracker Stage Assessment is a paid API for AI agents from x402.disputetracker.xyz, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Assesses the current UMA dispute stage for a Polymarket prediction market event, including stage confidence, time estimates, activity metrics, and progress toward resolution.

## Facts

- Endpoint: POST https://x402.disputetracker.xyz/api/agent/stage-assessment/x402
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disputetracker-stage-assessment-6f2bd816
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wvdCWFcazXRH3DUyWVdnW

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-stage-assessment-6f2bd816 -d '<json body>'
```

Example prompt: Can you check the current UMA dispute stage for the Polymarket event at https://polymarket.com/event/example-polymarket-event — I want to know how confident the tracker is, how much time is left, and what percentage of the dispute process is done?

## When to prefer this

Use this endpoint when you need trader-grade, real-time visibility into the UMA dispute resolution lifecycle for a specific Polymarket event — particularly when you need stage confidence scores, time estimates with confidence labels, and activity breakdowns (dispute count, voting rounds, chain events). Prefer this over generic oracle trackers when the user's intent is specifically about Polymarket prediction markets and UMA escalation stages.

## Known failure modes

- Invalid or unrecognized Polymarket event URL or slug returns an error or empty result
- Market not currently in a dispute state may return no active stage data
- Blockchain data unavailability may reduce data completeness score and lower stage confidence
- Network or upstream Polymarket/UMA API outage may cause request failure
- Stale data may be returned if live chain events have not yet propagated

## How this service works

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

## Output

Returns a JSON object with the Polymarket market metadata (title, status, question, resolution), the assessed UMA dispute stage (ID, label, confidence, explanation, completeness score), activity metrics (disputes, chain events, voting rounds, oracle requests), and progress details (time remaining, next event, progress percent, active stage label), plus source, price tier, capability name, and 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": "basic",
  "capability": "stage-assessment",
  "generatedAt": "2026-07-21T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disputetracker-stage-assessment-6f2bd816/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)
