# DisputeTracker Evidence Readiness API

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

Returns trader-grade Polymarket dispute tracking data including UMA resolution stage, time-to-resolution estimates, dispute activity counts, and progress metrics for a given prediction market event.

## Facts

- Endpoint: POST https://x402.disputetracker.xyz/api/agent/evidence-readiness/x402
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/disputetracker-evidence-readiness-api-b00ad0ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fieUlat-dTG8ZurCeyBmp

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-evidence-readiness-api-b00ad0ae -d '<json body>'
```

Example prompt: Can you check the current UMA dispute stage and time-left estimate for this Polymarket market — https://polymarket.com/event/example-polymarket-event — and tell me whether it's been escalated to DVM voting yet?

## When to prefer this

Choose this endpoint when you need structured, trader-grade intelligence on the UMA dispute resolution lifecycle for a specific Polymarket prediction market — particularly when you need stage ID, time estimates, and dispute activity counts in a single call. Prefer this over manual on-chain lookups or generic blockchain explorers when you want parsed, confidence-scored stage data and human-readable time labels without building your own UMA event indexer.

## Known failure modes

- Invalid or unknown Polymarket event URL or slug returns an error or empty result
- Market not found on Polymarket returns a 404-style error
- Market has no active dispute so stage data may be null or minimal
- Network or chain indexing lag may cause stale data with low data completeness score
- UMA DVM voting in progress may result in low time confidence labeled as 'estimated'
- Rate limiting or payment failure via x402 protocol returns 402 or auth error

## How this service works

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

## Output

A JSON object containing the market metadata (title, status, resolved outcome), the current UMA stage with a confidence score and explanation, activity counts (disputes, chain events, voting rounds, oracle requests), and a progress block with time-left labels, next event label, time confidence, progress percentage, and active stage label. Also includes source, price tier, capability identifier, 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": "advanced",
  "capability": "evidence-readiness",
  "generatedAt": "2026-07-21T12:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/disputetracker-evidence-readiness-api-b00ad0ae/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)
