# Suverse Wallet PnL & Skill Scorer

> Suverse Wallet PnL & Skill Scorer is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns 90-day realized/total PnL, win rate, profit factor, drawdown, trade cadence, skill score, and skill tier for any tracked EVM or Solana wallet

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/wallet-pnl
- 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/suverse-wallet-pnl-skill-scorer-2af17455
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jVxm0Mktaps6MIaS25pSu

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 suverse-wallet-pnl-skill-scorer-2af17455 -d '<json body>'
```

Example prompt: Can you pull up the 90-day PnL stats and skill score for the Ethereum wallet 0x1234...abcd — I want to see its win rate, profit factor, and what tier it lands in?

## When to prefer this

Choose this endpoint when you need a holistic on-chain trading performance verdict — not just raw transaction history — for a specific EVM or Solana wallet. It is ideal when you want pre-computed smart-money metrics (skill score, tier, profit factor) without running your own trade analysis pipeline. Prefer alternatives if you need real-time trade data, token-level breakdowns, or wallets outside EVM/Solana ecosystems.

## Known failure modes

- Wallet not in tracking database returns tracked:false (not an error, normal response)
- Invalid wallet address format may return a 4xx error
- Unsupported chain type may cause a validation failure
- Network or upstream scoring table unavailability returns 5xx
- Malformed POST body returns schema validation error

## How this service works

One-call PnL + skill verdict for any tracked wallet (EVM or Solana): 90d realized/total PnL, win rate, profit factor, drawdown, trade cadence, skill score + tier. Untracked wallets return tracked:false (not an error). Sourced from our own smart-money scoring table.

## Output

A JSON object containing: tracked (boolean indicating if the wallet is in the smart-money scoring table), and when tracked is true: 90-day realized PnL, total PnL, win rate, profit factor, maximum drawdown, trade cadence, a numeric skill score, and a skill tier label. Untracked wallets return tracked:false without error.

## 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",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-wallet-pnl-skill-scorer-2af17455/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
