# Predge Track Record Lookup

> Predge Track Record Lookup is a paid API for AI agents from api.predge.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a cryptographically verified win-rate and track record summary for a given Polymarket wallet (pubkey) over a configurable time window

## Facts

- Endpoint: GET https://api.predge.io/v1/track-record/%7Bpubkey%7D
- 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/predge-track-record-lookup-2242e582
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GNTwEgvvTX3m6Y2jsUqeT

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 predge-track-record-lookup-2242e582
```

Example prompt: Pull up the verified track record for Polymarket wallet 0xABC123 — I want to see their win rate and how many correct calls they've made over all time.

## When to prefer this

Use this endpoint when you need a cryptographically verified, tamper-proof track record for a specific Polymarket wallet address — particularly when evaluating whale traders for copy-trading, vetting signal providers, or building performance leaderboards. Prefer this over general blockchain explorers because it provides a structured win-rate summary with Merkle-root verification specific to Polymarket prediction calls.

## Known failure modes

- Unknown or invalid pubkey returns 404 or empty result
- Wallet with no recorded Polymarket activity may return zero decided_calls
- Invalid window parameter defaults to 'all' silently
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if too many calls are made in rapid succession

## How this service works

Real-time alerts on whale traders on Polymarket. Heuristic Insider Watch, wallet scoring 0–100, Bloomberg-style web terminal. Free plan included.

## Output

A JSON object containing: kind ('calls-track-record'), a payload with clears_bar (boolean), correct_calls (integer), decided_calls (integer), calls_merkle_root (hash for cryptographic verification), and win_rate_lower_bound (float); plus a signature and outcome_verified boolean indicating the result is cryptographically attested.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "calls-track-record",
  "payload": {
   "clears_bar": true,
   "correct_calls": 8,
   "decided_calls": 12,
   "calls_merkle_root": "9f8e…",
   "win_rate_lower_bound": 0.39
  },
  "signature": "…",
  "outcome_verified": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-track-record-lookup-2242e582/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.predge.io](https://www.zero.xyz/host/api.predge.io/llms.txt)
