# Predge Polymarket Wallet Profile

> Predge Polymarket Wallet Profile is a paid API for AI agents from x402-api-production-266e.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns a full Predge analytics profile for a single Polymarket proxy-wallet address, including Predge score, win rates, PnL, trade history, and favorite market categories.

## Facts

- Endpoint: GET https://x402-api-production-266e.up.railway.app/v1/wallets/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-polymarket-wallet-profile-388cdc3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M8PoHTnlgwgDFHg2Z7tYo

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-polymarket-wallet-profile-388cdc3d
```

Example prompt: Pull the full Predge profile for Polymarket wallet 0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be — I want the Predge score, 30-day win rate, all-time PnL, and what market categories they trade most.

## When to prefer this

Use this endpoint when you need a comprehensive analytics profile of a single known Polymarket wallet address, including proprietary Predge scoring, multi-window win rates, and trade history — rather than leaderboard rankings or market-level whale activity.

## Known failure modes

- 404 - wallet address not found in Predge dataset (not charged)
- 400 - malformed or non-lowercase wallet address
- 402 - payment required / insufficient USDC balance
- 500 - internal server error from upstream Polymarket data

## How this service works

Full profile of one Polymarket wallet (path param: 0x… proxy-wallet address, lowercase). Returns Predge score (0-100), win rates (live-computed 7d/30d from resolved markets + scorer's 30d/90d — outcome_verified: {win_rate: true, pnl: false}), all-time totals (trades, avg position, and modeled_pnl_30d_usd/modeled_pnl_all_time_usd — a MODELED binary-payout estimate over RESOLVED markets, all_time genuinely unbounded, matching the wallet-history curve; NOT realized/settled P&L, see the note field), top-5 favorite market categories, and the last 20 trades delayed 15 minutes. 404 (not charged) for wallets unknown to the Predge dataset.

## Output

Returns a JSON object containing: Predge score (0-100 quality score), win rates computed live for 7d/30d windows and from scorer's 30d/90d data, all-time totals (trade count, realized PnL, average position size), top-5 favorite Polymarket market categories, and the last 20 trades with a 15-minute delay. Returns 404 (not charged) if the wallet is unknown to the Predge dataset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-polymarket-wallet-profile-388cdc3d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-266e.up.railway.app](https://www.zero.xyz/host/x402-api-production-266e.up.railway.app/llms.txt)
