# Suverse Solana Wallet Reputation API

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

Returns a comprehensive reputation verdict for a Solana wallet address, including smart-money skill tier, activity class, trading style flags, and recent trade statistics.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/wallet-reputation
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-solana-wallet-reputation-api-cd867e64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zQZM6uV_541sD7-YcLPda

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-solana-wallet-reputation-api-cd867e64 -d '<json body>'
```

Example prompt: Can you check the reputation and smart-money tier for Solana wallet 7xKp...abc3? I want to know if it's elite or skilled, what its trading style looks like, and whether it's worth copying based on its recent 24h and 7d trade stats.

## When to prefer this

Use this endpoint when you need a single-call, structured reputation verdict for a Solana wallet — especially for copy-trading decisions, wallet vetting, or on-chain credibility checks. Prefer this over raw on-chain data scrapers when you want pre-classified skill tiers and trading style analysis without building your own scoring logic. It is specifically suited for Solana (not EVM chains) and returns only on-chain data, so avoid it if you need cross-chain reputation or off-chain social signals.

## Known failure modes

- Invalid or malformed Solana wallet address returns an error or unknown tier
- Wallet with no on-chain trading activity returns 'unknown' tier with empty stats
- Network or upstream data provider issues may result in timeout or incomplete response
- Rate limiting or payment failure (x402) if USDC payment is not properly included
- Very new wallets with insufficient history may return minimal data

## How this service works

Solana wallet reputation verdict in one call: smart-money skill tier (elite, skilled, average, weak, unknown), activity class, trading style flags, 24h/7d/30d trade stats, recent classified trades. Answers: can this wallet trading be trusted or copied? On-chain data only.

## Output

Returns a structured reputation verdict for the queried Solana wallet, including: smart-money skill tier (elite, skilled, average, weak, or unknown), activity classification, trading style flags, aggregated trade statistics for the past 24 hours, 7 days, and 30 days, and a list of recent classified trades — all derived exclusively from on-chain data.

## 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-solana-wallet-reputation-api-cd867e64/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)
