# Wallet Head-to-Head Comparison (Smart Money Profile)

> Wallet Head-to-Head Comparison (Smart Money Profile) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.022/call, status unknown (last checked 2026-09-14).

Compares two blockchain wallets side-by-side on realized profit, ROI, trading volume, and a composite smart-money score, declaring a clear winner

## Facts

- Endpoint: GET https://api.x402node.dev/chain/wallet-compare
- Price: $0.022/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-head-to-head-comparison-smart-money-profile-7c1461fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2eGDlvVr0nbtDxFtpnCMG

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 wallet-head-to-head-comparison-smart-money-profile-7c1461fd
```

Example prompt: Compare these two wallets for copy trading — 0x1234abcd... vs 0x5678efgh... on Base — and tell me which one has better realized profit, ROI, and overall smart-money score so I know which to follow.

## When to prefer this

Use this endpoint when you have exactly two wallet candidates and need a direct, computed judgment on which is the smarter trader — ideal for copy-trading decisions, trust scoring, or vetting referrals. Prefer this over single-wallet analysis endpoints when a relative ranking between two addresses is the goal.

## Known failure modes

- Invalid or malformed wallet addresses return an error
- Wallets with no on-chain trading history may produce null or zero scores
- Unsupported chain identifiers result in an error response
- Rate limiting or payment failure returns a 402 or 429 error
- Network timeouts if on-chain data indexing is slow

## How this service works

Head-to-head comparison of two wallets' smart-money profiles - realized profit, ROI, trading volume and a composite score each, with a clear winner - lets agents decide which wallet to copy-trade or trust when choosing between candidates, a computed judgment across both. wallet compare, compare wallets, which wallet is better, copy trade comparison, smart money compare, better trader, wallet vs wallet

## Output

A structured head-to-head report for both wallets including each one's realized profit, ROI, trading volume, and a composite smart-money score, plus an explicit winner declaration indicating which wallet is the stronger copy-trade or trust candidate.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "addressA",
      "addressB"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "eth (default), base, arbitrum, optimism, polygon"
      },
      "addressA": {
       "type": "string",
       "description": "First wallet (required)"
      },
      "addressB": {
       "type": "string",
       "description": "Second wallet (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-head-to-head-comparison-smart-money-profile-7c1461fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
