# polynews.news Wallet Performance Scorer

> polynews.news Wallet Performance Scorer is a paid API for AI agents from polynews.news, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Scores a prediction market wallet with a sharp score, badges, top trades, and P&L metrics

## Facts

- Endpoint: POST https://polynews.news/api/v1/wallet
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/polynews-news-e29ea4f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zq8RNP0QxtEC00t1zfc54

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 polynews-news-e29ea4f6 -d '<json body>'
```

Example prompt: Score the wallet 0xABC123... on Polymarket — give me the sharp score, any badges it's earned, the top trades, and overall P&L metrics.

## When to prefer this

Use this endpoint when you need a comprehensive performance profile of a single prediction market wallet — including a sharp score, badges, trade history highlights, and P&L — rather than broad market signals or multi-wallet smart money detection.

## Known failure modes

- Invalid or unrecognized wallet address returns 400 error
- Wallet with no trading history may return empty or zero-value metrics
- Network timeout if blockchain data is slow to resolve
- Payment failure via x402 protocol returns 402 status

## How this service works

Wallet performance scoring: sharp score, trader badge, top trades, and calibration metrics (alpha/Brier/conviction)

## Output

Returns a wallet performance scorecard including a numeric sharp score, earned badges (e.g. 'sharp', 'whale'), a list of top trades with outcomes, and aggregated P&L metrics such as ROI, win rate, and profit/loss totals.

## Example request

```json
{
 "input": {
  "body": {
   "walletAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f42bE"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "badge": {
         "type": "string",
         "description": "Single tier label, e.g. '🏆 Proven Winner', '🐟 Retail', 'Neutral'"
        },
        "metrics": {
         "type": "object",
         "properties": {
          "alphaScore": {
           "type": "number"
          },
          "brierScore": {
           "type": "number"
          },
          "convictionScore": {
           "type": "number"
          }
         },
         "description": "Calibration metrics (not dollar P&L)"
        },
        "topTrades": {
         "type": "array"
        },
        "sharpScore": {
         "type": "number",
         "description": "0-100 unified sharp score"
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "pnl": {
     "type": "object"
    },
    "badges": {
     "type": "array"
    },
    "topTrades": {
     "type": "array"
    },
    "sharpScore": {
     "type": "number"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/polynews-news-e29ea4f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from polynews.news](https://www.zero.xyz/host/polynews.news/llms.txt)
