# Polymarket Wallet Reputation API

> Polymarket Wallet Reputation API is a paid API for AI agents from x402.sashco.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-12).

Returns reputation, persona tags, realized PnL, open positions, and conviction metrics for a given Polymarket wallet address

## Facts

- Endpoint: GET https://x402.sashco.ca/wallets/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polymarket-wallet-reputation-api-58c997b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9R3mHFRVRjlFii3Q70EBe

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 polymarket-wallet-reputation-api-58c997b4
```

Example prompt: Can you pull the reputation profile for Polymarket wallet 0x1234abcd — I want to know their persona, realized PnL, and how concentrated their positions are to see if they're a sharp or an insider?

## When to prefer this

Use this endpoint when you need to assess the credibility or category of a specific Polymarket wallet — e.g. to determine if it's a sharp, insider, or noise trader before acting on its positions. Prefer this over general blockchain explorers when you need Polymarket-specific persona classification and PnL context rather than raw on-chain transaction data.

## Known failure modes

- Invalid or malformed wallet address returns a 400 or empty response
- Wallet with no Polymarket history may return minimal or null fields
- Payment failure via x402 (insufficient USDC balance on Base) blocks the call
- Rate limiting or quota exhaustion may return a 429
- Data freshness lag of ~24 hours means very recent trades may not be reflected

## How this service works

Wallet reputation and trading-signal detection for Polymarket prediction markets -- combining smart-money wallet tracking, insider-pattern detection, and a custom ML edge model. Wallet reputation scores, per-market wallet flow by persona, a free signal-accuracy track record, and push notifications when a high-confidence signal fires. Pay-per-call via x402 (USDC on Base). Machine-readable pricing: GET /.well-known/x402.

## Output

A JSON object containing the wallet's trade and volume statistics, assigned persona tags (e.g. sharp, insider, noise trader), realized PnL, open position count, and conviction/concentration metrics. Does not include per-trade history.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "required": [
    "method"
   ]
  }
 },
 "description": "Wallet reputation: volume, persona tags, realized PnL, open positions, conviction/concentration. No per-trade history."
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "format": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polymarket-wallet-reputation-api-58c997b4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.sashco.ca](https://www.zero.xyz/host/x402.sashco.ca/llms.txt)
